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

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

?? standardxyitemrenderer.java

?? jfreechart1.0.1 jsp繪制圖表的開發包
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
/* ===========================================================
 * JFreeChart : a free chart library for the Java(tm) platform
 * ===========================================================
 *
 * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
 *
 * Project Info:  http://www.jfree.org/jfreechart/index.html
 *
 * This library is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU Lesser General Public License as published by 
 * the Free Software Foundation; either version 2.1 of the License, or 
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
 * USA.  
 *
 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
 * in the United States and other countries.]
 *
 * ---------------------------
 * StandardXYItemRenderer.java
 * ---------------------------
 * (C) Copyright 2001-2005, by Object Refinery Limited and Contributors.
 *
 * Original Author:  David Gilbert (for Object Refinery Limited);
 * Contributor(s):   Mark Watson (www.markwatson.com);
 *                   Jonathan Nash;
 *                   Andreas Schneider;
 *                   Norbert Kiesel (for TBD Networks);
 *                   Christian W. Zuckschwerdt;
 *                   Bill Kelemen;
 *                   Nicolas Brodu (for Astrium and EADS Corporate Research 
 *                   Center);
 *
 * $Id: StandardXYItemRenderer.java,v 1.18.2.4 2005/11/28 12:06:35 mungady Exp $
 *
 * Changes:
 * --------
 * 19-Oct-2001 : Version 1, based on code by Mark Watson (DG);
 * 22-Oct-2001 : Renamed DataSource.java --> Dataset.java etc. (DG);
 * 21-Dec-2001 : Added working line instance to improve performance (DG);
 * 22-Jan-2002 : Added code to lock crosshairs to data points.  Based on code 
 *               by Jonathan Nash (DG);
 * 23-Jan-2002 : Added DrawInfo parameter to drawItem() method (DG);
 * 28-Mar-2002 : Added a property change listener mechanism so that the 
 *               renderer no longer needs to be immutable (DG);
 * 02-Apr-2002 : Modified to handle null values (DG);
 * 09-Apr-2002 : Modified draw method to return void.  Removed the translated 
 *               zero from the drawItem method.  Override the initialise() 
 *               method to calculate it (DG);
 * 13-May-2002 : Added code from Andreas Schneider to allow changing 
 *               shapes/colors per item (DG);
 * 24-May-2002 : Incorporated tooltips into chart entities (DG);
 * 25-Jun-2002 : Removed redundant code (DG);
 * 05-Aug-2002 : Incorporated URLs for HTML image maps into chart entities (RA);
 * 08-Aug-2002 : Added discontinuous lines option contributed by 
 *               Norbert Kiesel (DG);
 * 20-Aug-2002 : Added user definable default values to be returned by 
 *               protected methods unless overridden by a subclass (DG);
 * 23-Sep-2002 : Updated for changes in the XYItemRenderer interface (DG);
 * 02-Oct-2002 : Fixed errors reported by Checkstyle (DG);
 * 25-Mar-2003 : Implemented Serializable (DG);
 * 01-May-2003 : Modified drawItem() method signature (DG);
 * 15-May-2003 : Modified to take into account the plot orientation (DG);
 * 29-Jul-2003 : Amended code that doesn't compile with JDK 1.2.2 (DG);
 * 30-Jul-2003 : Modified entity constructor (CZ);
 * 20-Aug-2003 : Implemented Cloneable and PublicCloneable (DG);
 * 24-Aug-2003 : Added null/NaN checks in drawItem (BK);
 * 08-Sep-2003 : Fixed serialization (NB);
 * 16-Sep-2003 : Changed ChartRenderingInfo --> PlotRenderingInfo (DG);
 * 21-Jan-2004 : Override for getLegendItem() method (DG);
 * 27-Jan-2004 : Moved working line into state object (DG);
 * 10-Feb-2004 : Changed drawItem() method to make cut-and-paste overriding 
 *               easier (DG);
 * 25-Feb-2004 : Replaced CrosshairInfo with CrosshairState.  Renamed 
 *               XYToolTipGenerator --> XYItemLabelGenerator (DG);
 * 08-Jun-2004 : Modified to use getX() and getY() methods (DG);
 * 15-Jul-2004 : Switched getX() with getXValue() and getY() with 
 *               getYValue() (DG);
 * 25-Aug-2004 : Created addEntity() method in superclass (DG);
 * 08-Oct-2004 : Added 'gapThresholdType' as suggested by Mike Watts (DG);
 * 11-Nov-2004 : Now uses ShapeUtilities to translate shapes (DG);
 * 23-Feb-2005 : Fixed getLegendItem() method to show lines.  Fixed bug
 *               1077108 (shape not visible for first item in series) (DG);
 * 10-Apr-2005 : Fixed item label positioning with horizontal orientation (DG);
 * 20-Apr-2005 : Use generators for legend tooltips and URLs (DG);
 * 27-Apr-2005 : Use generator for series label in legend (DG);
 *
 */

package org.jfree.chart.renderer.xy;

import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Paint;
import java.awt.Point;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.geom.GeneralPath;
import java.awt.geom.Line2D;
import java.awt.geom.Rectangle2D;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;

import org.jfree.chart.LegendItem;
import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.entity.EntityCollection;
import org.jfree.chart.event.RendererChangeEvent;
import org.jfree.chart.labels.XYToolTipGenerator;
import org.jfree.chart.plot.CrosshairState;
import org.jfree.chart.plot.Plot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.PlotRenderingInfo;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.urls.XYURLGenerator;
import org.jfree.data.xy.XYDataset;
import org.jfree.io.SerialUtilities;
import org.jfree.ui.RectangleEdge;
import org.jfree.util.BooleanList;
import org.jfree.util.BooleanUtilities;
import org.jfree.util.ObjectUtilities;
import org.jfree.util.PublicCloneable;
import org.jfree.util.ShapeUtilities;
import org.jfree.util.UnitType;

/**
 * Standard item renderer for an {@link XYPlot}.  This class can draw (a) 
 * shapes at each point, or (b) lines between points, or (c) both shapes and 
 * lines.
 */
public class StandardXYItemRenderer extends AbstractXYItemRenderer 
                                    implements XYItemRenderer,
                                               Cloneable,
                                               PublicCloneable,
                                               Serializable {

    /** For serialization. */
    private static final long serialVersionUID = -3271351259436865995L;
    
    /** Constant for the type of rendering (shapes only). */
    public static final int SHAPES = 1;

    /** Constant for the type of rendering (lines only). */
    public static final int LINES = 2;

    /** Constant for the type of rendering (shapes and lines). */
    public static final int SHAPES_AND_LINES = SHAPES | LINES;

    /** Constant for the type of rendering (images only). */
    public static final int IMAGES = 4;

    /** Constant for the type of rendering (discontinuous lines). */
    public static final int DISCONTINUOUS = 8;

    /** Constant for the type of rendering (discontinuous lines). */
    public static final int DISCONTINUOUS_LINES = LINES | DISCONTINUOUS;

    /** A flag indicating whether or not shapes are drawn at each XY point. */
    private boolean baseShapesVisible;

    /** A flag indicating whether or not lines are drawn between XY points. */
    private boolean plotLines;

    /** A flag indicating whether or not images are drawn between XY points. */
    private boolean plotImages;

    /** A flag controlling whether or not discontinuous lines are used. */
    private boolean plotDiscontinuous;

    /** Specifies how the gap threshold value is interpreted. */
    private UnitType gapThresholdType = UnitType.RELATIVE;
    
    /** Threshold for deciding when to discontinue a line. */
    private double gapThreshold = 1.0;

    /** A flag that controls whether or not shapes are filled for ALL series. */
    private Boolean shapesFilled;

    /** 
     * A table of flags that control (per series) whether or not shapes are 
     * filled. 
     */
    private BooleanList seriesShapesFilled;

    /** The default value returned by the getShapeFilled() method. */
    private boolean baseShapesFilled;

    /** 
     * A flag that controls whether or not each series is drawn as a single 
     * path. 
     */
    private boolean drawSeriesLineAsPath;

    /** 
     * The shape that is used to represent a line in the legend. 
     * This should never be set to <code>null</code>. 
     */
    private transient Shape legendLine;
    
    /**
     * Constructs a new renderer.
     */
    public StandardXYItemRenderer() {
        this(LINES, null);
    }

    /**
     * Constructs a new renderer.
     * <p>
     * To specify the type of renderer, use one of the constants: SHAPES, LINES
     * or SHAPES_AND_LINES.
     *
     * @param type  the type.
     */
    public StandardXYItemRenderer(int type) {
        this(type, null);
    }

    /**
     * Constructs a new renderer.
     * <p>
     * To specify the type of renderer, use one of the constants: SHAPES, LINES
     * or SHAPES_AND_LINES.
     *
     * @param type  the type of renderer.
     * @param toolTipGenerator  the item label generator (<code>null</code> 
     *                          permitted).
     */
    public StandardXYItemRenderer(int type, 
                                  XYToolTipGenerator toolTipGenerator) {
        this(type, toolTipGenerator, null);
    }

    /**
     * Constructs a new renderer.
     * <p>
     * To specify the type of renderer, use one of the constants: SHAPES, LINES 
     * or SHAPES_AND_LINES.
     *
     * @param type  the type of renderer.
     * @param toolTipGenerator  the item label generator (<code>null</code> 
     *                          permitted).
     * @param urlGenerator  the URL generator.
     */
    public StandardXYItemRenderer(int type,
                                  XYToolTipGenerator toolTipGenerator,
                                  XYURLGenerator urlGenerator) {

        super();
        setToolTipGenerator(toolTipGenerator);
        setURLGenerator(urlGenerator);
        if ((type & SHAPES) != 0) {
            this.baseShapesVisible = true;
        }
        if ((type & LINES) != 0) {
            this.plotLines = true;
        }
        if ((type & IMAGES) != 0) {
            this.plotImages = true;
        }
        if ((type & DISCONTINUOUS) != 0) {
            this.plotDiscontinuous = true;
        }

        this.shapesFilled = null;
        this.seriesShapesFilled = new BooleanList();
        this.baseShapesFilled = true;
        this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
        this.drawSeriesLineAsPath = false;
    }

    /**
     * Returns true if shapes are being plotted by the renderer.
     *
     * @return <code>true</code> if shapes are being plotted by the renderer.
     */
    public boolean getBaseShapesVisible() {
        return this.baseShapesVisible;
    }

    /**
     * Sets the flag that controls whether or not a shape is plotted at each 
     * data point.
     *
     * @param flag  the flag.
     */
    public void setBaseShapesVisible(boolean flag) {
        if (this.baseShapesVisible != flag) {
            this.baseShapesVisible = flag;
            notifyListeners(new RendererChangeEvent(this));
        }
    }

    // SHAPES FILLED

    /**
     * Returns the flag used to control whether or not the shape for an item is
     * filled.
     * <p>
     * The default implementation passes control to the 
     * <code>getSeriesShapesFilled</code> method.  You can override this method 
     * if you require different behaviour.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return A boolean.
     */
    public boolean getItemShapeFilled(int series, int item) {
        return getSeriesShapesFilled(series);
    }

    /**
     * Returns the flag used to control whether or not the shapes for a series
     * are filled.
     *
     * @param series  the series index (zero-based).
     *
     * @return A boolean.
     */
    public boolean getSeriesShapesFilled(int series) {

        // return the overall setting, if there is one...
        if (this.shapesFilled != null) {
            return this.shapesFilled.booleanValue();
        }

        // otherwise look up the paint table

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品视频一二三区| 亚洲成人免费视频| 久久精品在线免费观看| 欧美tk—视频vk| 日韩欧美一区二区在线视频| 欧美美女bb生活片| 欧美日韩一级片在线观看| 欧美亚洲国产bt| 欧美巨大另类极品videosbest| 欧美视频你懂的| 制服.丝袜.亚洲.另类.中文| 在线播放中文一区| 日韩精品中文字幕一区二区三区| 日韩欧美aaaaaa| 国产婷婷精品av在线| 国产精品三级视频| 亚洲男女一区二区三区| 亚洲一本大道在线| 日本网站在线观看一区二区三区 | 中文字幕亚洲在| 亚洲同性gay激情无套| 亚洲欧美日本韩国| 午夜精品视频一区| 麻豆成人免费电影| 粉嫩av一区二区三区粉嫩| 99久久久久久| 欧美乱妇15p| 精品理论电影在线观看 | 水蜜桃久久夜色精品一区的特点| 日本一区中文字幕| 国产高清久久久| 欧美亚洲国产怡红院影院| 欧美日韩国产美| 日韩电影在线免费看| 欧美韩国日本不卡| 亚洲欧美日韩成人高清在线一区| 欧美日韩一级视频| 国产精品国产馆在线真实露脸 | 狠狠狠色丁香婷婷综合激情 | 国产精品人成在线观看免费 | 精一区二区三区| 在线观看视频一区| 亚洲综合999| 4438x亚洲最大成人网| 免费成人av在线| 久久综合久色欧美综合狠狠| 国产在线精品一区二区不卡了| 久久精品欧美一区二区三区不卡| 成人永久免费视频| 一区二区三区蜜桃网| 欧美精品1区2区| 国内外精品视频| 国产精品天天看| 日本韩国一区二区| 老司机免费视频一区二区| 26uuu亚洲综合色| 97久久精品人人做人人爽50路| 亚洲欧美日韩在线播放| 欧美区一区二区三区| 久久精品99国产精品日本| 日本一区二区视频在线观看| 99精品在线免费| 看片的网站亚洲| 中文字幕一区在线| 日韩一区二区在线观看视频 | 色悠悠久久综合| 日韩电影在线观看电影| 久久久久国产精品麻豆| 色94色欧美sute亚洲13| 麻豆精品新av中文字幕| 自拍偷拍国产亚洲| 欧美一区二区三级| 99久久精品国产毛片| 久久99日本精品| 亚洲精品伦理在线| 久久久国产精华| 欧美群妇大交群中文字幕| 国产91在线观看| 美女精品自拍一二三四| 亚洲视频中文字幕| 日韩av二区在线播放| 国产精品欧美精品| 日韩精品专区在线影院观看 | 日韩精品一区二区三区视频在线观看| 国产成人h网站| 久久精品国产网站| 亚洲午夜免费电影| 国产精品妹子av| 久久综合av免费| 欧美男女性生活在线直播观看| 99久久夜色精品国产网站| 麻豆国产欧美一区二区三区| 亚洲国产视频a| 亚洲欧美在线aaa| 久久久综合九色合综国产精品| 欧美精选午夜久久久乱码6080| 色综合视频在线观看| 丰满放荡岳乱妇91ww| 国产在线不卡一卡二卡三卡四卡| 日本中文字幕一区二区有限公司| 一区二区三区四区不卡在线| 久久久一区二区三区捆绑**| 91精品国产综合久久久久久久| 99久久精品国产导航| 成人晚上爱看视频| 韩国v欧美v亚洲v日本v| 青青草一区二区三区| 亚洲美女视频在线| 亚洲三级电影网站| 亚洲人精品一区| 亚洲精品国产精华液| 亚洲人成网站精品片在线观看| 欧美韩日一区二区三区四区| 国产日产亚洲精品系列| 国产日韩精品一区二区三区| 欧美刺激午夜性久久久久久久| 日韩欧美专区在线| 337p粉嫩大胆噜噜噜噜噜91av| 日韩精品一区二区三区四区视频 | 亚洲狠狠丁香婷婷综合久久久| 欧美国产一区在线| 国产精品久久久久久久久免费相片| 国产日韩一级二级三级| 中文字幕一区在线观看视频| 亚洲人123区| 亚洲高清视频在线| 免费在线看成人av| 久草在线在线精品观看| 国产盗摄女厕一区二区三区| av一区二区三区四区| 欧美亚一区二区| 91精品国产入口在线| 精品国产成人在线影院 | 亚洲国产日韩在线一区模特| 午夜电影一区二区| 精品亚洲免费视频| 91视视频在线观看入口直接观看www | 久久久精品天堂| 国产精品女同一区二区三区| 亚洲欧洲日本在线| 东方aⅴ免费观看久久av| av一区二区三区在线| 精品视频999| 精品99一区二区三区| 国产精品久线在线观看| 亚洲国产精品一区二区www| 日韩精品亚洲一区二区三区免费| 精品写真视频在线观看| eeuss鲁片一区二区三区在线看 | jlzzjlzz亚洲日本少妇| 在线观看一区不卡| 久久久久久久久伊人| 一区二区不卡在线播放| 久久国产三级精品| 色婷婷国产精品久久包臀| 精品少妇一区二区三区在线视频| 国产精品丝袜91| 看片的网站亚洲| 欧美伊人久久大香线蕉综合69| 久久久综合九色合综国产精品| 亚洲国产综合人成综合网站| 顶级嫩模精品视频在线看| 欧美精三区欧美精三区| 亚洲视频一区在线观看| 精彩视频一区二区| 欧美日韩视频在线观看一区二区三区| 2023国产一二三区日本精品2022| 日韩理论片中文av| 国产一区二区三区高清播放| 欧美精选一区二区| 一区二区成人在线观看| 成人激情免费视频| 精品国产一区二区三区久久久蜜月| 粉嫩蜜臀av国产精品网站| 91精品国产综合久久久蜜臀粉嫩| 综合欧美一区二区三区| 国产精品一区二区在线看| 欧美二区三区的天堂| 一区二区三区欧美在线观看| 成人综合在线观看| 精品第一国产综合精品aⅴ| 亚洲mv大片欧洲mv大片精品| 91麻豆国产福利在线观看| 国产精品私人自拍| 成人一区二区三区视频 | 日韩一卡二卡三卡四卡| 亚洲线精品一区二区三区八戒| 粉嫩高潮美女一区二区三区| 26uuu另类欧美| 捆绑变态av一区二区三区| 91精品麻豆日日躁夜夜躁| 亚洲va在线va天堂| 欧美视频中文字幕| 亚洲动漫第一页| 欧美日韩一区三区| 亚洲成va人在线观看| 91国偷自产一区二区开放时间 | 久久久国际精品| 国模套图日韩精品一区二区| 精品国产乱码久久久久久图片|