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

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

?? jfreechart.java

?? JFreeChart是做統計圖表的,、混合圖、甘特圖以及一些儀表盤
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
     */
    public JFreeChart(String title, Font titleFont, Plot plot, 
                      boolean createLegend) {

        if (plot == null) {
            throw new NullPointerException("Null 'plot' argument.");
        }

        // create storage for listeners...
        this.progressListeners = new EventListenerList();
        this.changeListeners = new EventListenerList();
        this.notify = true;  // default is to notify listeners when the 
                             // chart changes

        this.renderingHints = new RenderingHints(
                RenderingHints.KEY_ANTIALIASING, 
                RenderingHints.VALUE_ANTIALIAS_ON);

        this.borderVisible = false;
        this.borderStroke = new BasicStroke(1.0f);
        this.borderPaint = Color.black;

        this.padding = RectangleInsets.ZERO_INSETS;
        
        this.plot = plot;
        plot.addChangeListener(this);

        this.subtitles = new ArrayList();

        // create a legend, if requested...
        if (createLegend) {
            LegendTitle legend = new LegendTitle(this.plot);
            legend.setMargin(new RectangleInsets(1.0, 1.0, 1.0, 1.0));
            legend.setFrame(new LineBorder());
            legend.setBackgroundPaint(Color.white);
            legend.setPosition(RectangleEdge.BOTTOM);
            this.subtitles.add(legend);
            legend.addChangeListener(this);
        }

        // add the chart title, if one has been specified...
        if (title != null) {
            if (titleFont == null) {
                titleFont = DEFAULT_TITLE_FONT;
            }
            this.title = new TextTitle(title, titleFont);
            this.title.addChangeListener(this);
        }

        this.backgroundPaint = DEFAULT_BACKGROUND_PAINT;

        this.backgroundImage = DEFAULT_BACKGROUND_IMAGE;
        this.backgroundImageAlignment = DEFAULT_BACKGROUND_IMAGE_ALIGNMENT;
        this.backgroundImageAlpha = DEFAULT_BACKGROUND_IMAGE_ALPHA;

    }

    /**
     * Returns the collection of rendering hints for the chart.
     *
     * @return The rendering hints for the chart (never <code>null</code>).
     * 
     * @see #setRenderingHints(RenderingHints)
     */
    public RenderingHints getRenderingHints() {
        return this.renderingHints;
    }

    /**
     * Sets the rendering hints for the chart.  These will be added (using the 
     * Graphics2D.addRenderingHints() method) near the start of the 
     * JFreeChart.draw() method.
     *
     * @param renderingHints  the rendering hints (<code>null</code> not 
     *                        permitted).
     *                        
     * @see #getRenderingHints()
     */
    public void setRenderingHints(RenderingHints renderingHints) {
        if (renderingHints == null) {
            throw new NullPointerException("RenderingHints given are null");
        }
        this.renderingHints = renderingHints;
        fireChartChanged();
    }

    /**
     * Returns a flag that controls whether or not a border is drawn around the
     * outside of the chart.
     *
     * @return A boolean.
     * 
     * @see #setBorderVisible(boolean)
     */
    public boolean isBorderVisible() {
        return this.borderVisible;
    }

    /**
     * Sets a flag that controls whether or not a border is drawn around the 
     * outside of the chart.
     *
     * @param visible  the flag.
     * 
     * @see #isBorderVisible()
     */
    public void setBorderVisible(boolean visible) {
        this.borderVisible = visible;
        fireChartChanged();
    }

    /**
     * Returns the stroke used to draw the chart border (if visible).
     *
     * @return The border stroke.
     * 
     * @see #setBorderStroke(Stroke)
     */
    public Stroke getBorderStroke() {
        return this.borderStroke;
    }

    /**
     * Sets the stroke used to draw the chart border (if visible).
     *
     * @param stroke  the stroke.
     * 
     * @see #getBorderStroke()
     */
    public void setBorderStroke(Stroke stroke) {
        this.borderStroke = stroke;
        fireChartChanged();
    }

    /**
     * Returns the paint used to draw the chart border (if visible).
     *
     * @return The border paint.
     * 
     * @see #setBorderPaint(Paint)
     */
    public Paint getBorderPaint() {
        return this.borderPaint;
    }

    /**
     * Sets the paint used to draw the chart border (if visible).
     *
     * @param paint  the paint.
     * 
     * @see #getBorderPaint()
     */
    public void setBorderPaint(Paint paint) {
        this.borderPaint = paint;
        fireChartChanged();
    }
    
    /**
     * Returns the padding between the chart border and the chart drawing area.
     * 
     * @return The padding (never <code>null</code>).
     * 
     * @see #setPadding(RectangleInsets)
     */
    public RectangleInsets getPadding() {
        return this.padding;   
    }

    /**
     * Sets the padding between the chart border and the chart drawing area,
     * and sends a {@link ChartChangeEvent} to all registered listeners.
     * 
     * @param padding  the padding (<code>null</code> not permitted).
     * 
     * @see #getPadding()
     */
    public void setPadding(RectangleInsets padding) {
        if (padding == null) {
            throw new IllegalArgumentException("Null 'padding' argument.");   
        }
        this.padding = padding;
        notifyListeners(new ChartChangeEvent(this));
    }
    
    /**
     * Returns the main chart title.  Very often a chart will have just one
     * title, so we make this case simple by providing accessor methods for
     * the main title.  However, multiple titles are supported - see the
     * {@link #addSubtitle(Title)} method.
     *
     * @return The chart title (possibly <code>null</code>).
     * 
     * @see #setTitle(TextTitle)
     */
    public TextTitle getTitle() {
        return this.title;
    }

    /**
     * Sets the main title for the chart and sends a {@link ChartChangeEvent} 
     * to all registered listeners.  If you do not want a title for the 
     * chart, set it to <code>null</code>.  If you want more than one title on
     * a chart, use the {@link #addSubtitle(Title)} method.
     *
     * @param title  the title (<code>null</code> permitted).
     * 
     * @see #getTitle()
     */
    public void setTitle(TextTitle title) {
        this.title = title;
        fireChartChanged();
    }

    /**
     * Sets the chart title and sends a {@link ChartChangeEvent} to all 
     * registered listeners.  This is a convenience method that ends up calling 
     * the {@link #setTitle(TextTitle)} method.  If there is an existing title,
     * its text is updated, otherwise a new title using the default font is 
     * added to the chart.  If <code>text</code> is <code>null</code> the chart
     * title is set to <code>null</code>.
     *
     * @param text  the title text (<code>null</code> permitted).
     * 
     * @see #getTitle()
     */
    public void setTitle(String text) {
        if (text != null) {
            if (this.title == null) {
                setTitle(new TextTitle(text, JFreeChart.DEFAULT_TITLE_FONT));
            }
            else {
                this.title.setText(text);
            }
        }
        else {
            setTitle((TextTitle) null);
        }
    }

    /**
     * Adds a legend to the plot and sends a {@link ChartChangeEvent} to all
     * registered listeners.
     * 
     * @param legend  the legend (<code>null</code> not permitted).
     * 
     * @see #removeLegend()
     */
    public void addLegend(LegendTitle legend) {
        addSubtitle(legend);    
    }
    
    /**
     * Returns the legend for the chart, if there is one.  Note that a chart
     * can have more than one legend - this method returns the first.
     * 
     * @return The legend (possibly <code>null</code>).
     * 
     * @see #getLegend(int)
     */
    public LegendTitle getLegend() {
        return getLegend(0);
    }
    
    /**
     * Returns the nth legend for a chart, or <code>null</code>.
     * 
     * @param index  the legend index (zero-based).
     * 
     * @return The legend (possibly <code>null</code>).
     * 
     * @see #addLegend(LegendTitle)
     */
    public LegendTitle getLegend(int index) {
        int seen = 0;
        Iterator iterator = this.subtitles.iterator();
        while (iterator.hasNext()) {
            Title subtitle = (Title) iterator.next();
            if (subtitle instanceof LegendTitle) {
                if (seen == index) {
                    return (LegendTitle) subtitle;
                }
                else {
                    seen++;   
                }
            }
        }
        return null;        
    }
    
    /**
     * Removes the first legend in the chart and sends a 
     * {@link ChartChangeEvent} to all registered listeners.
     * 
     * @see #getLegend()
     */
    public void removeLegend() {
        removeSubtitle(getLegend());
    }
    
    /**
     * Returns the list of subtitles for the chart.
     *
     * @return The subtitle list (possibly empty, but never <code>null</code>).
     * 
     * @see #setSubtitles(List)
     */
    public List getSubtitles() {
        return new ArrayList(this.subtitles);
    }

    /**
     * Sets the title list for the chart (completely replaces any existing 
     * titles) and sends a {@link ChartChangeEvent} to all registered 
     * listeners.
     *
     * @param subtitles  the new list of subtitles (<code>null</code> not 
     *                   permitted).
     *                   
     * @see #getSubtitles()
     */
    public void setSubtitles(List subtitles) {
        if (subtitles == null) {
            throw new NullPointerException("Null 'subtitles' argument.");
        }
        setNotify(false);
        clearSubtitles();
        Iterator iterator = subtitles.iterator();
        while (iterator.hasNext()) {
            Title t = (Title) iterator.next();
            if (t != null) {
                addSubtitle(t);
            }
        }
        setNotify(true);  // this fires a ChartChangeEvent
    }

    /**
     * Returns the number of titles for the chart.
     *
     * @return The number of titles for the chart.
     * 
     * @see #getSubtitles()
     */
    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.
     * 
     * @see #addSubtitle(Title)
     */
    public Title getSubtitle(int index) {
        if ((index < 0) || (index >= getSubtitleCount())) {
            throw new IllegalArgumentException("Index out of range.");
        }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美老肥妇做.爰bbww视频| 亚洲综合在线视频| 成人h动漫精品一区二区| 亚洲一级电影视频| 国产在线视视频有精品| 亚洲日本va在线观看| 欧美日韩亚洲另类| 亚洲国产精品影院| 中文字幕乱码日本亚洲一区二区 | 国产91富婆露脸刺激对白| 精品在线视频一区| 亚洲国产一区二区三区| 欧美激情一区不卡| 中文字幕一区日韩精品欧美| 欧美一级国产精品| 国产精品入口麻豆原神| 国产欧美视频在线观看| 亚洲免费观看高清完整版在线观看| 亚洲免费三区一区二区| 成人18视频日本| 亚洲成人先锋电影| 国产欧美一区二区三区在线看蜜臀| 精品一区二区三区免费观看| 国产精品免费免费| 午夜影院在线观看欧美| 精品少妇一区二区三区日产乱码| 韩日欧美一区二区三区| 国产精品乱人伦| 欧美高清视频一二三区 | 国产一区二区久久| 一区二区三区四区乱视频| 最新国产の精品合集bt伙计| 国产精品 欧美精品| 国产日韩高清在线| 成人久久久精品乱码一区二区三区| 91免费国产在线观看| 国产69精品久久777的优势| 成人激情小说网站| 成人深夜福利app| 色视频欧美一区二区三区| 亚洲高清久久久| 精品视频一区三区九区| 亚洲美女区一区| 成人久久久精品乱码一区二区三区| 欧美久久久久久久久久| 成人激情免费电影网址| 日韩电影免费一区| 亚洲精品日日夜夜| 久久青草欧美一区二区三区| 欧美性感一类影片在线播放| 国产成人在线电影| 精品一区二区三区免费播放| 性久久久久久久久久久久| 亚洲欧美国产77777| 日本一区二区三区国色天香| 欧美电影免费观看高清完整版在线 | 麻豆精品在线播放| 日韩欧美国产一区在线观看| 91福利在线播放| 91美女片黄在线观看91美女| 国产69精品久久久久777| 国产综合色产在线精品| 综合激情成人伊人| 久久久国产午夜精品| 久久久久久99精品| 国产精品久久久久一区二区三区共 | 91福利小视频| 国产一区二区三区免费看 | 在线观看免费一区| 欧美日韩中文另类| www.亚洲在线| 午夜欧美电影在线观看| 日韩免费在线观看| 人禽交欧美网站| 久久亚区不卡日本| 欧美三级电影网站| 国产精品1区2区3区| 亚洲精品你懂的| 久久久久久久综合狠狠综合| 欧美一区二区三区成人| 欧美精品久久久久久久多人混战| 99精品在线免费| 99精品偷自拍| 色视频一区二区| 欧美亚洲国产一区二区三区va | 欧美美女黄视频| 欧美日韩美少妇 | 五月天丁香久久| 偷拍日韩校园综合在线| 日韩成人dvd| 国产一区欧美日韩| 丰满白嫩尤物一区二区| 在线观看av一区| 91精品国产综合久久精品图片| 日韩精品久久久久久| 日本一区二区在线不卡| 欧美三级在线视频| 久久99这里只有精品| 亚洲精品伦理在线| 日本一区二区在线不卡| 国产精品久久久久影院色老大| 国产精品久久久久aaaa樱花| 无吗不卡中文字幕| 亚洲国产视频网站| 亚洲欧美日韩国产综合在线| 亚洲国产成人av| 亚洲地区一二三色| 极品美女销魂一区二区三区 | 91精品欧美福利在线观看| 欧美日韩在线一区二区| 久久久综合视频| 天堂蜜桃91精品| 91在线观看下载| 精品国产乱码久久久久久1区2区| 国产精品免费人成网站| 国产在线精品视频| 欧美伦理影视网| 亚洲午夜国产一区99re久久| 激情伊人五月天久久综合| 色哟哟精品一区| 中文字幕色av一区二区三区| 精品一区二区三区久久| 欧美主播一区二区三区美女| 久久老女人爱爱| 国产美女在线观看一区| 日韩一区二区高清| 久久99九九99精品| 欧美一级一级性生活免费录像| 亚洲午夜久久久久久久久久久 | 久久精品亚洲国产奇米99| 日韩精品乱码免费| 欧美精品一区在线观看| 精东粉嫩av免费一区二区三区| 欧美一区二区久久久| 激情偷乱视频一区二区三区| 日韩视频免费观看高清完整版在线观看 | 日本一区二区免费在线| 国产suv精品一区二区三区| 国产丝袜美腿一区二区三区| 成人av综合一区| 亚洲综合一区在线| 日韩欧美美女一区二区三区| 精品一区二区三区不卡 | 国产福利电影一区二区三区| 国产精品色一区二区三区| 麻豆成人av在线| 日韩久久精品一区| eeuss影院一区二区三区| 樱桃国产成人精品视频| 91精品国产色综合久久ai换脸| 国产麻豆精品theporn| 亚洲精品少妇30p| 欧美mv和日韩mv的网站| 色婷婷综合久久久久中文| 激情图片小说一区| 亚洲午夜一区二区| 成人免费在线视频| 国产精品午夜电影| 婷婷综合在线观看| 精品久久久网站| 欧美日韩精品高清| 99久久国产综合色|国产精品| 日韩国产高清在线| 一区二区三区国产精华| 国产精品国产三级国产aⅴ原创| 日韩欧美一级二级| 欧美色图片你懂的| 一本大道久久a久久综合婷婷| 国产精品亚洲午夜一区二区三区| 午夜精品爽啪视频| 午夜久久久久久久久| 亚洲精品国产一区二区精华液| 国产精品色哟哟| 国产精品国产三级国产aⅴ入口 | 91福利视频网站| av成人免费在线| 91在线看国产| 在线观看区一区二| 日韩一区二区三免费高清| 在线观看91av| 久久亚洲精精品中文字幕早川悠里| 日韩欧美亚洲国产精品字幕久久久| 91精品国产手机| 日韩欧美国产成人一区二区| 久久久久久99久久久精品网站| 亚洲国产精品v| 亚洲成av人影院在线观看网| 五月婷婷激情综合网| 国产一区二区按摩在线观看| 国产99久久久国产精品潘金网站| 成人精品视频.| 欧美日韩日日摸| 久久久久久影视| 午夜久久久久久久久| 国产成人av电影在线播放| 欧美三级电影在线观看| 久久久精品2019中文字幕之3| 一区二区久久久| 国产精品自拍毛片| 日韩免费观看高清完整版 |