亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jfreechart.java

?? Web圖形化的Java庫
?? JAVA
?? 第 1 頁 / 共 4 頁
字號:
     * Sets a flag that controls whether or not a border is drawn around the outside of the
     * chart.
     * 
     * @param visible  the flag.
     */
    public void setBorderVisible(boolean visible) {
        this.borderVisible = visible;
        fireChartChanged();
    }
    
    /**
     * Returns the stroke used to draw the chart border (if visible).
     * 
     * @return The border stroke.
     */
    public Stroke getBorderStroke() {
        return this.borderStroke;
    }
    
    /**
     * Sets the stroke used to draw the chart border (if visible).
     * 
     * @param stroke  the stroke.
     */
    public void setBorderStroke(Stroke stroke) {
        this.borderStroke = stroke;
        fireChartChanged();
    }
    
    /**
     * Returns the paint used to draw the chart border (if visible).
     * 
     * @return The border paint.
     */
    public Paint getBorderPaint() {
        return this.borderPaint;
    }
    
    /**
     * Sets the paint used to draw the chart border (if visible).
     * 
     * @param paint  the paint.
     */
    public void setBorderPaint(Paint paint) {
        this.borderPaint = paint;
        fireChartChanged();
    }
        
    /**
     * Returns the chart title.
     *
     * @return the chart title.
     */
    public TextTitle getTitle() {
        return this.title;
    }

    /**
     * Sets the title for the chart.
     *
     * @param title  the new title.
     */
    public void setTitle(TextTitle title) {
        this.title = title;
        fireChartChanged();
    }

    /**
     * Sets the chart title.
     *
     * @param title  the new title.
     */
    public void setTitle(String title) {

        if (title != null) {
            if (this.title == null) {
                setTitle(new TextTitle(title, JFreeChart.DEFAULT_TITLE_FONT));
            }
            else {
                this.title.setText(title);
            }
        }
        else {
            setTitle((TextTitle) null);
        }

    }

    /**
     * Returns the list of subtitles.
     *
     * @return the subtitle list.
     */
    public List getSubtitles() {
        return this.subtitles;
    }

    /**
     * Sets the title list for the chart (completely replaces any existing titles).
     *
     * @param subtitles  the new list of subtitles.
     */
    public void setSubtitles(List subtitles) {
        this.subtitles = subtitles;
        fireChartChanged();
    }

    /**
     * Returns the number of titles for the chart.
     *
     * @return  the number of titles for the chart.
     */
    public int getSubtitleCount() {
        return this.subtitles.size();
    }

    /**
     * Returns a chart subtitle.
     *
     * @param index  the index of the chart subtitle (zero based).
     *
     * @return a chart subtitle.
     */
    public AbstractTitle getSubtitle(int index) {

        // check arguments...
        if ((index < 0) || (index == getSubtitleCount())) {
            throw new IllegalArgumentException("JFreeChart.getSubtitle(...): index out of range.");
        }

        return (AbstractTitle) this.subtitles.get(index);

    }

    /**
     * Adds a chart subtitle, and notifies registered listeners that the chart has been modified.
     *
     * @param subtitle  the subtitle.
     */
    public void addSubtitle(AbstractTitle subtitle) {

        if (subtitle != null) {
            this.subtitles.add(subtitle);
            subtitle.addChangeListener(this);
            fireChartChanged();
        }

    }

    /**
     * Returns the chart legend.
     *
     * @return the chart legend (possibly <code>null</code>).
     */
    public Legend getLegend() {
        return legend;
    }

    /**
     * Sets the chart legend.  Registered listeners are notified that the chart
     * has been modified.
     *
     * @param legend  the new chart legend (null permitted).
     */
    public void setLegend(Legend legend) {

        // if there is an existing legend, remove the chart from the list of
        // change listeners...
        Legend existing = this.legend;
        if (existing != null) {
            existing.removeChangeListener(this);
        }

        // set the new legend, and register the chart as a change listener...
        this.legend = legend;
        if (legend != null) {
            legend.addChangeListener(this);
        }

        // notify chart change listeners...
        fireChartChanged();

    }

    /**
     * Returns the plot for the chart.  The plot is a class responsible for
     * coordinating the visual representation of the data, including the axes
     * (if any).
     *
     * @return the plot.
     */
    public Plot getPlot() {
        return this.plot;
    }

    /**
     * Returns the plot cast as a {@link CategoryPlot}.
     * <p>
     * NOTE: if the plot is not an instance of {@link CategoryPlot}, then a
     * <code>ClassCastException</code> is thrown.
     *
     * @return the plot.
     */
    public CategoryPlot getCategoryPlot() {
        return (CategoryPlot) this.plot;
    }

    /**
     * Returns the plot cast as an {@link XYPlot}.
     * <p>
     * NOTE: if the plot is not an instance of {@link XYPlot}, then a
     * <code>ClassCastException</code> is thrown.
     *
     * @return the plot.
     */
    public XYPlot getXYPlot() {
        return (XYPlot) this.plot;
    }

    /**
     * Returns a flag that indicates whether or not anti-aliasing is used when
     * the chart is drawn.
     *
     * @return the flag.
     * @deprecated Add hints using the getRenderingHints()/setRenderingHints() methods.
     */
    public boolean getAntiAlias() {
        return antialias;
    }

    /**
     * Sets a flag that indicates whether or not anti-aliasing is used when the
     * chart is drawn.
     * <P>
     * Anti-aliasing usually improves the appearance of charts.
     *
     * @param flag  the new value of the flag.
     * @deprecated Add hints using the getRenderingHints()/setRenderingHints() methods.
     */
    public void setAntiAlias(boolean flag) {

        if (this.antialias != flag) {
            this.antialias = flag;
            fireChartChanged();
        }

    }

    /**
     * Returns the color/shade used to fill the chart background.
     *
     * @return the color/shade used to fill the chart background.
     */
    public Paint getBackgroundPaint() {
        return this.backgroundPaint;
    }

    /**
     * Sets the color/shade used to fill the chart background.  All registered
     * listeners are notified that the chart has been changed.
     *
     * @param paint  the new background color/shade.
     */
    public void setBackgroundPaint(Paint paint) {

        if (this.backgroundPaint != null) {
            if (!this.backgroundPaint.equals(paint)) {
                this.backgroundPaint = paint;
                fireChartChanged();
            }
        }
        else {
            if (paint != null) {
                this.backgroundPaint = paint;
                fireChartChanged();
            }
        }

    }

    /**
     * Returns the chart's background image (possibly null).
     *
     * @return the image.
     */
    public Image getBackgroundImage() {

        return this.backgroundImage;

    }

    /**
     * Sets the chart's background image (null permitted). Registered listeners
     * are notified that the chart has been changed.
     *
     * @param image  the image.
     */
    public void setBackgroundImage(Image image) {

        if (this.backgroundImage != null) {
            if (!this.backgroundImage.equals(image)) {
                this.backgroundImage = image;
                fireChartChanged();
            }
        }
        else {
            if (image != null) {
                this.backgroundImage = image;
                fireChartChanged();
            }
        }

    }

    /**
     * Returns the background image alignment. Alignment constants are defined in the
     * <code>com.jrefinery.ui.Align</code> class in the JCommon class library.
     *
     * @return The alignment.
     */
    public int getBackgroundImageAlignment() {
        return this.backgroundImageAlignment;
    }

    /**
     * Sets the background alignment.
     * <p>
     * Alignment options are defined by the {@link org.jfree.ui.Align} class.
     *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久美女毛片| 久久91精品国产91久久小草| 亚洲一区二区三区影院| 老司机精品视频线观看86 | 欧美午夜寂寞影院| 欧美精品一区二区三区蜜桃视频| 亚洲精品午夜久久久| 狠狠色综合播放一区二区| 欧美日韩免费观看一区三区| 国产精品久久久久影院老司| 国产98色在线|日韩| 91精品在线一区二区| 中文字幕一区二区三区精华液| 国产自产2019最新不卡| 91精品国产麻豆| 婷婷亚洲久悠悠色悠在线播放| 成人蜜臀av电影| 国产校园另类小说区| 免费久久精品视频| 欧美一区欧美二区| 三级久久三级久久| 欧美婷婷六月丁香综合色| 成人欧美一区二区三区黑人麻豆| 国产一区二区三区在线观看免费视频| 3d成人动漫网站| 天使萌一区二区三区免费观看| 91美女在线视频| 亚洲色欲色欲www| 一本大道av伊人久久综合| 国产精品久久久久永久免费观看| 国产美女主播视频一区| 久久久久久影视| 国产一区二区视频在线| 国产欧美精品一区| 在线日韩国产精品| 亚洲综合激情小说| 欧美高清激情brazzers| 五月天中文字幕一区二区| 欧美日韩国产高清一区二区| 天堂一区二区在线| 日韩一级二级三级精品视频| 麻豆一区二区在线| 久久久99精品久久| 成人av资源在线| 亚洲日本电影在线| 欧美日本一区二区| 男人的j进女人的j一区| 精品精品欲导航| 国产成人精品亚洲日本在线桃色| 国产人伦精品一区二区| 色综合天天综合网天天狠天天| 亚洲激情av在线| 欧美夫妻性生活| 国产麻豆视频一区| 一区精品在线播放| 欧美日本视频在线| 国产剧情一区二区三区| 亚洲三级电影网站| 欧美高清视频一二三区| 国产精品99久久久| 亚洲国产婷婷综合在线精品| 欧美一区二区免费视频| 丁香婷婷综合五月| 香蕉av福利精品导航 | www.色精品| 亚洲资源在线观看| 亚洲精品在线免费观看视频| www.日韩大片| 久久99国产精品免费| 亚洲麻豆国产自偷在线| 日韩免费高清电影| 一本大道久久a久久综合| 久久av中文字幕片| 亚洲一区二区四区蜜桃| 久久精品亚洲麻豆av一区二区| 色播五月激情综合网| 国产尤物一区二区在线| 一区二区三区高清| 国产欧美视频一区二区| 欧美日本免费一区二区三区| 粉嫩嫩av羞羞动漫久久久| 亚洲成人一区二区在线观看| 国产色一区二区| 欧美一区2区视频在线观看| 91免费视频观看| 狠狠色伊人亚洲综合成人| 亚洲激情自拍偷拍| 亚洲国产成人在线| 日韩女优制服丝袜电影| 欧美日韩在线精品一区二区三区激情| 成人黄色综合网站| 国产一区不卡精品| 日本网站在线观看一区二区三区| 亚洲欧洲性图库| 久久久99精品久久| 欧美精品一区二区三区蜜臀| 欧美一区午夜精品| 欧美日韩不卡视频| 91黄色激情网站| 成人av免费在线观看| 国产伦精品一区二区三区免费| 日日夜夜一区二区| 性做久久久久久免费观看欧美| 最新热久久免费视频| 中文字幕免费不卡| 久久久久久久一区| 精品成人免费观看| 精品国产一区二区三区av性色| 在线成人午夜影院| 欧美日韩精品专区| 欧美日韩国产综合一区二区| 欧美视频一区二区在线观看| 欧美午夜一区二区| 在线观看av不卡| 在线免费一区三区| 欧洲一区二区三区在线| 在线观看亚洲a| 欧美日韩激情在线| 欧美一级精品在线| 2021国产精品久久精品| 久久久亚洲精华液精华液精华液| 2022国产精品视频| 国产精品卡一卡二卡三| 国产精品久久毛片av大全日韩| 国产精品久久久久一区二区三区 | 欧美成人性福生活免费看| 欧美一区二区精品| 久久久综合网站| 国产精品黄色在线观看| 一区二区三区在线视频免费| 伊人夜夜躁av伊人久久| 婷婷成人综合网| 另类小说综合欧美亚洲| 国产99久久久久| 色综合久久久久久久| 欧美日韩三级一区| 日韩欧美一区二区三区在线| 国产欧美精品一区| 一区二区三区在线不卡| 日本成人在线视频网站| 国产精品一级片| 日本黄色一区二区| 日韩欧美不卡在线观看视频| 久久久不卡影院| 亚洲国产一区视频| 国产一区不卡精品| 欧美丝袜丝nylons| 国产亚洲精久久久久久| 一区二区三区高清| 国产一区二区免费视频| 91黄色在线观看| 日韩精品影音先锋| 亚洲美女一区二区三区| 精品一区二区三区在线观看| 成人丝袜视频网| 欧美一区二区三区免费观看视频| 国产女人aaa级久久久级| 亚洲成人av一区| 成人sese在线| 精品粉嫩超白一线天av| 亚洲一区二区免费视频| 国产成人自拍网| 欧美日韩aaa| 中文字幕一区二区不卡| 美女脱光内衣内裤视频久久影院| 99精品视频一区| 精品少妇一区二区三区日产乱码| 亚洲免费av观看| 国产剧情在线观看一区二区| 精品视频全国免费看| 中文字幕亚洲精品在线观看| 九色|91porny| 欧日韩精品视频| 亚洲国产高清不卡| 九一九一国产精品| 欧美一卡二卡三卡四卡| 日韩理论在线观看| 国产成人精品影视| 日韩精品一区二区三区老鸭窝 | 欧美综合色免费| 国产精品久久久久一区二区三区共| 老司机午夜精品99久久| 欧美日韩亚洲综合| 亚洲曰韩产成在线| 色婷婷久久综合| 亚洲日本一区二区| aa级大片欧美| 亚洲色图视频免费播放| av网站一区二区三区| 国产女人水真多18毛片18精品视频 | 在线观看免费视频综合| 最新国产成人在线观看| jlzzjlzz国产精品久久| 久久一区二区三区四区| 国产精品资源站在线| 久久亚洲精华国产精华液| 裸体在线国模精品偷拍| 欧美一级二级三级乱码| 日韩电影在线观看网站| 91精品在线一区二区|