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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? jfreechart.java

?? JFreeChart是做統(tǒng)計(jì)圖表的,、混合圖、甘特圖以及一些儀表盤(pán)
?? JAVA
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
/* ===========================================================
 * JFreeChart : a free chart library for the Java(tm) platform
 * ===========================================================
 *
 * (C) Copyright 2000-2007, 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.]
 * 
 * ---------------
 * JFreeChart.java
 * ---------------
 * (C) Copyright 2000-2007, by Object Refinery Limited and Contributors.
 *
 * Original Author:  David Gilbert (for Object Refinery Limited);
 * Contributor(s):   Andrzej Porebski;
 *                   David Li;
 *                   Wolfgang Irler;
 *                   Christian W. Zuckschwerdt;
 *                   Klaus Rheinwald;
 *                   Nicolas Brodu;
 *                   
 * NOTE: The above list of contributors lists only the people that have
 * contributed to this source file (JFreeChart.java) - for a list of ALL
 * contributors to the project, please see the README.txt file.
 *
 * Changes (from 20-Jun-2001)
 * --------------------------
 * 20-Jun-2001 : Modifications submitted by Andrzej Porebski for legend 
 *               placement;
 * 21-Jun-2001 : Removed JFreeChart parameter from Plot constructors (DG);
 * 22-Jun-2001 : Multiple titles added (original code by David Berry, with 
 *               reworkings by DG);
 * 18-Sep-2001 : Updated header (DG);
 * 15-Oct-2001 : Moved data source classes into new package 
 *               com.jrefinery.data.* (DG);
 * 18-Oct-2001 : New factory method for creating VerticalXYBarChart (DG);
 * 19-Oct-2001 : Moved series paint and stroke methods to the Plot class (DG);
 *               Moved static chart creation methods to new ChartFactory 
 *               class (DG);
 * 22-Oct-2001 : Renamed DataSource.java --> Dataset.java etc. (DG);
 *               Fixed bug where chart isn't registered with the dataset (DG);
 * 07-Nov-2001 : Fixed bug where null title in constructor causes 
 *               exception (DG);
 *               Tidied up event notification code (DG);
 * 17-Nov-2001 : Added getLegendItemCount() method (DG);
 * 21-Nov-2001 : Set clipping in draw method to ensure that nothing gets drawn 
 *               outside the chart area (DG);
 * 11-Dec-2001 : Added the createBufferedImage() method, taken from the 
 *               JFreeChartServletDemo class (DG);
 * 13-Dec-2001 : Added tooltips (DG);
 * 16-Jan-2002 : Added handleClick() method (DG);
 * 22-Jan-2002 : Fixed bug correlating legend labels with pie data (DG);
 * 05-Feb-2002 : Removed redundant tooltips code (DG);
 * 19-Feb-2002 : Added accessor methods for the backgroundImage and 
 *               backgroundImageAlpha attributes (DG);
 * 21-Feb-2002 : Added static fields for INFO, COPYRIGHT, LICENCE, CONTRIBUTORS
 *               and LIBRARIES.  These can be used to display information about
 *               JFreeChart (DG);
 * 06-Mar-2002 : Moved constants to JFreeChartConstants interface (DG);
 * 18-Apr-2002 : PieDataset is no longer sorted (oldman);
 * 23-Apr-2002 : Moved dataset to the Plot class (DG);
 * 13-Jun-2002 : Added an extra draw() method (DG);
 * 25-Jun-2002 : Implemented the Drawable interface and removed redundant 
 *               imports (DG);
 * 26-Jun-2002 : Added another createBufferedImage() method (DG);
 * 18-Sep-2002 : Fixed issues reported by Checkstyle (DG);
 * 23-Sep-2002 : Added new contributor (DG);
 * 28-Oct-2002 : Created main title and subtitle list to replace existing title
 *               list (DG);
 * 08-Jan-2003 : Added contributor (DG);
 * 17-Jan-2003 : Added new constructor (DG);
 * 22-Jan-2003 : Added ChartColor class by Cameron Riley, and background image 
 *               alignment code by Christian W. Zuckschwerdt (DG);
 * 11-Feb-2003 : Added flag to allow suppression of chart change events, based 
 *               on a suggestion by Klaus Rheinwald (DG);
 * 04-Mar-2003 : Added small fix for suppressed chart change events (see bug id
 *               690865) (DG);
 * 10-Mar-2003 : Added Benoit Xhenseval to contributors (DG);
 * 26-Mar-2003 : Implemented Serializable (DG);
 * 15-Jul-2003 : Added an optional border for the chart (DG);
 * 11-Sep-2003 : Took care of listeners while cloning (NB);
 * 16-Sep-2003 : Changed ChartRenderingInfo --> PlotRenderingInfo (DG);
 * 22-Sep-2003 : Added nullpointer checks.
 * 25-Sep-2003 : Added nullpointer checks too (NB).
 * 03-Dec-2003 : Legends are now registered by this class instead of using the 
 *               old constructor way (TM);
 * 03-Dec-2003 : Added anchorPoint to draw() method (DG);
 * 08-Jan-2004 : Reworked title code, introducing line wrapping (DG);
 * 09-Feb-2004 : Created additional createBufferedImage() method (DG);
 * 05-Apr-2004 : Added new createBufferedImage() method (DG);
 * 27-May-2004 : Moved constants from JFreeChartConstants.java back to this 
 *               class (DG);
 * 25-Nov-2004 : Updates for changes to Title class (DG);
 * 06-Jan-2005 : Change lookup for default background color (DG);
 * 31-Jan-2005 : Added Don Elliott to contributors (DG);
 * 02-Feb-2005 : Added clearSubtitles() method (DG);
 * 03-Feb-2005 : Added Mofeed Shahin to contributors (DG);
 * 08-Feb-2005 : Updated for RectangleConstraint changes (DG);
 * 28-Mar-2005 : Renamed Legend --> OldLegend (DG);
 * 12-Apr-2005 : Added methods to access legend(s) in subtitle list (DG);
 * 13-Apr-2005 : Added removeLegend() and removeSubtitle() methods (DG);
 * 20-Apr-2005 : Modified to collect chart entities from titles and 
 *               subtitles (DG);
 * 26-Apr-2005 : Removed LOGGER (DG);
 * 06-Jun-2005 : Added addLegend() method and padding attribute, fixed equals() 
 *               method (DG);
 * 24-Nov-2005 : Removed OldLegend and related code - don't want to support
 *               this in 1.0.0 final (DG);
 * ------------- JFREECHART 1.0.x ---------------------------------------------
 * 27-Jan-2006 : Updated version number (DG);
 * 07-Dec-2006 : Added some missing credits (DG);
 * 17-Jan-2007 : Added Darren Jung to contributor list (DG);
 * 05-Mar-2007 : Added Sergei Ivanov to the contributor list (DG);
 * 16-Mar-2007 : Modified initial legend border (DG);
 * 22-Mar-2007 : New methods for text anti-aliasing (DG);
 * 16-May-2007 : Fixed argument check in getSubtitle(), copy list in 
 *               get/setSubtitles(), and added new addSubtitle(int, Title) 
 *               method (DG);
 * 05-Jun-2007 : Add change listener to default legend (DG);
 * 
 */

package org.jfree.chart;

import java.awt.AlphaComposite;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Composite;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Paint;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.geom.AffineTransform;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.net.URL;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.ResourceBundle;

import javax.swing.ImageIcon;
import javax.swing.UIManager;
import javax.swing.event.EventListenerList;

import org.jfree.JCommon;
import org.jfree.chart.block.BlockParams;
import org.jfree.chart.block.EntityBlockResult;
import org.jfree.chart.block.LengthConstraintType;
import org.jfree.chart.block.LineBorder;
import org.jfree.chart.block.RectangleConstraint;
import org.jfree.chart.entity.EntityCollection;
import org.jfree.chart.event.ChartChangeEvent;
import org.jfree.chart.event.ChartChangeListener;
import org.jfree.chart.event.ChartProgressEvent;
import org.jfree.chart.event.ChartProgressListener;
import org.jfree.chart.event.PlotChangeEvent;
import org.jfree.chart.event.PlotChangeListener;
import org.jfree.chart.event.TitleChangeEvent;
import org.jfree.chart.event.TitleChangeListener;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.Plot;
import org.jfree.chart.plot.PlotRenderingInfo;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.title.LegendTitle;
import org.jfree.chart.title.TextTitle;
import org.jfree.chart.title.Title;
import org.jfree.data.Range;
import org.jfree.io.SerialUtilities;
import org.jfree.ui.Align;
import org.jfree.ui.Drawable;
import org.jfree.ui.HorizontalAlignment;
import org.jfree.ui.RectangleEdge;
import org.jfree.ui.RectangleInsets;
import org.jfree.ui.Size2D;
import org.jfree.ui.VerticalAlignment;
import org.jfree.ui.about.Contributor;
import org.jfree.ui.about.Licences;
import org.jfree.ui.about.ProjectInfo;
import org.jfree.util.ObjectUtilities;
import org.jfree.util.PaintUtilities;

/**
 * A chart class implemented using the Java 2D APIs.  The current version
 * supports bar charts, line charts, pie charts and xy plots (including time
 * series data).
 * <P>
 * JFreeChart coordinates several objects to achieve its aim of being able to
 * draw a chart on a Java 2D graphics device: a list of {@link Title} objects
 * (which often includes the chart's legend), a {@link Plot} and a 
 * {@link org.jfree.data.general.Dataset} (the plot in turn manages a 
 * domain axis and a range axis).
 * <P>
 * You should use a {@link ChartPanel} to display a chart in a GUI.
 * <P>
 * The {@link ChartFactory} class contains static methods for creating 
 * 'ready-made' charts.
 *
 * @see ChartPanel
 * @see ChartFactory
 * @see Title
 * @see Plot
 */
public class JFreeChart implements Drawable,
                                   TitleChangeListener,
                                   PlotChangeListener,
                                   Serializable,
                                   Cloneable {

    /** For serialization. */    
    private static final long serialVersionUID = -3470703747817429120L;
    
    /** Information about the project. */
    public static final ProjectInfo INFO = new JFreeChartInfo();

    /** The default font for titles. */
    public static final Font DEFAULT_TITLE_FONT 
            = new Font("SansSerif", Font.BOLD, 18);

    /** The default background color. */
    public static final Paint DEFAULT_BACKGROUND_PAINT 
            = UIManager.getColor("Panel.background");

    /** The default background image. */
    public static final Image DEFAULT_BACKGROUND_IMAGE = null;

    /** The default background image alignment. */
    public static final int DEFAULT_BACKGROUND_IMAGE_ALIGNMENT = Align.FIT;

    /** The default background image alpha. */
    public static final float DEFAULT_BACKGROUND_IMAGE_ALPHA = 0.5f;

    /** 
     * Rendering hints that will be used for chart drawing.  This should never
     * be <code>null</code>. 
     */
    private transient RenderingHints renderingHints;

    /** A flag that controls whether or not the chart border is drawn. */
    private boolean borderVisible;

    /** The stroke used to draw the chart border (if visible). */
    private transient Stroke borderStroke;

    /** The paint used to draw the chart border (if visible). */
    private transient Paint borderPaint;

    /** The padding between the chart border and the chart drawing area. */
    private RectangleInsets padding;
    
    /** The chart title (optional). */
    private TextTitle title;

    /** 
     * The chart subtitles (zero, one or many).  This field should never be
     * <code>null</code>.
     */
    private List subtitles;

    /** Draws the visual representation of the data. */
    private Plot plot;

    /** Paint used to draw the background of the chart. */
    private transient Paint backgroundPaint;

    /** An optional background image for the chart. */
    private transient Image backgroundImage;  // todo: not serialized yet

    /** The alignment for the background image. */
    private int backgroundImageAlignment = Align.FIT;

    /** The alpha transparency for the background image. */
    private float backgroundImageAlpha = 0.5f;

    /** Storage for registered change listeners. */
    private transient EventListenerList changeListeners;

    /** Storage for registered progress listeners. */
    private transient EventListenerList progressListeners;

    /** 
     * A flag that can be used to enable/disable notification of chart change 
     * events. 
     */
    private boolean notify;
    
    /**
     * Creates a new chart based on the supplied plot.  The chart will have
     * a legend added automatically, but no title (although you can easily add
     * one later).  
     * <br><br>
     * Note that the  {@link ChartFactory} class contains a range 
     * of static methods that will return ready-made charts, and often this
     * is a more convenient way to create charts than using this constructor.
     *
     * @param plot  the plot (<code>null</code> not permitted).
     */
    public JFreeChart(Plot plot) {
        this(null, null, plot, true);
    }

    /**
     * Creates a new chart with the given title and plot.  A default font 
     * (@link DEFAULT_TITLE_FONT) is used for the title, and the chart will 
     * have a legend added automatically.  
     * <br><br>
     * Note that the  {@link ChartFactory} class contains a range 
     * of static methods that will return ready-made charts, and often this
     * is a more convenient way to create charts than using this constructor.
     *
     * @param title  the chart title (<code>null</code> permitted).
     * @param plot  the plot (<code>null</code> not permitted).
     */
    public JFreeChart(String title, Plot plot) {
        this(title, JFreeChart.DEFAULT_TITLE_FONT, plot, true);
    }

    /**
     * Creates a new chart with the given title and plot.  The 
     * <code>createLegend</code> argument specifies whether or not a legend
     * should be added to the chart.  
     * <br><br>
     * Note that the  {@link ChartFactory} class contains a range 
     * of static methods that will return ready-made charts, and often this
     * is a more convenient way to create charts than using this constructor.
     *
     * @param title  the chart title (<code>null</code> permitted).
     * @param titleFont  the font for displaying the chart title 
     *                   (<code>null</code> permitted).
     * @param plot  controller of the visual representation of the data 
     *              (<code>null</code> not permitted).
     * @param createLegend  a flag indicating whether or not a legend should   
     *                      be created for the chart.

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩国产在线观看| www.欧美日韩国产在线| 色菇凉天天综合网| 精品国产乱码91久久久久久网站| 亚洲精品福利视频网站| 国产91高潮流白浆在线麻豆 | 麻豆国产精品官网| 99久久久久久| 国产亚洲一区二区三区在线观看| 日韩精品一二三四| 日本高清成人免费播放| 国产精品久久久久久久久免费樱桃| 免费成人美女在线观看| 欧美在线视频全部完| 国产精品每日更新| 国产成人精品三级麻豆| 久久综合九色综合97_久久久| 肉色丝袜一区二区| 色婷婷国产精品| 国产精品福利一区二区三区| 国产精品一二三区在线| 精品精品欲导航| 青青草精品视频| 欧美午夜精品久久久久久超碰| 亚洲天堂福利av| 本田岬高潮一区二区三区| 久久毛片高清国产| 国内精品免费在线观看| 日韩美女视频在线| 青青草原综合久久大伊人精品| 欧美精品丝袜中出| 五月天久久比比资源色| 精品视频1区2区| 亚洲成人免费av| 欧美色涩在线第一页| 亚洲成av人片| 欧美高清视频一二三区 | 中文字幕亚洲区| 成人美女视频在线看| 亚洲国产经典视频| 99这里只有精品| 亚洲精品欧美在线| 欧美性欧美巨大黑白大战| 亚洲一卡二卡三卡四卡五卡| 欧美日韩三级一区二区| 亚洲 欧美综合在线网络| 色美美综合视频| 一区二区三区国产精品| 欧美日韩国产bt| 视频一区二区中文字幕| 日韩视频免费观看高清在线视频| 麻豆一区二区三| 精品精品国产高清a毛片牛牛| 国产专区欧美精品| 国产日产欧美精品一区二区三区| 国产黑丝在线一区二区三区| 国产精品污www在线观看| av资源站一区| 亚洲黄色在线视频| 欧美美女一区二区在线观看| 日本不卡在线视频| 久久综合九色欧美综合狠狠| 国产成人三级在线观看| 中文字幕亚洲区| 精品视频在线看| 老色鬼精品视频在线观看播放| 久久久www成人免费无遮挡大片| 国产成人av一区二区三区在线 | 亚洲丰满少妇videoshd| 678五月天丁香亚洲综合网| 青青草原综合久久大伊人精品优势| 亚洲精品在线一区二区| 顶级嫩模精品视频在线看| 亚洲九九爱视频| 欧美一二三区在线观看| 波多野结衣中文字幕一区二区三区| 亚洲激情成人在线| 日韩欧美中文一区| 成人黄色777网| 亚洲成人免费av| 国产亚洲美州欧州综合国| 91视频在线看| 日本不卡视频一二三区| 国产欧美日韩中文久久| 欧美日韩一区二区三区不卡 | 性感美女极品91精品| 精品福利一区二区三区免费视频| thepron国产精品| 五月婷婷激情综合网| 欧美韩国日本综合| 欧美日本一区二区在线观看| 国产91丝袜在线播放0| 亚洲一区在线观看网站| 久久久不卡网国产精品二区| 欧美少妇一区二区| 国产一区二区视频在线| 亚洲一区二区三区中文字幕在线| 欧美精品一区二区三区视频 | 成人黄色片在线观看| 天堂午夜影视日韩欧美一区二区| 欧美激情综合网| 337p亚洲精品色噜噜狠狠| 成人精品高清在线| 奇米影视一区二区三区| 亚洲精品中文字幕乱码三区| 精品人在线二区三区| 色婷婷精品大视频在线蜜桃视频 | 日韩影视精彩在线| 国产精品久久久久久久久免费丝袜 | 天堂成人国产精品一区| 国产精品进线69影院| 欧美不卡视频一区| 91成人网在线| 丁香婷婷综合网| 久久国产精品72免费观看| 亚洲理论在线观看| 亚洲国产精华液网站w| 精品久久久久久无| 91精品久久久久久久99蜜桃| 91一区二区在线观看| 国产999精品久久久久久绿帽| 奇米影视7777精品一区二区| 亚洲自拍与偷拍| 亚洲欧美一区二区视频| 久久只精品国产| 日韩欧美一区中文| 欧美性色黄大片| 91黄色免费观看| 不卡视频免费播放| 国产盗摄一区二区| 精品综合久久久久久8888| 午夜精品成人在线| 亚洲一区二区欧美日韩| 亚洲图片欧美激情| 国产精品女人毛片| 国产亚洲婷婷免费| 精品sm在线观看| 欧美成人三级电影在线| 日韩一区二区电影| 欧美日韩一区在线观看| 在线日韩一区二区| 色菇凉天天综合网| 色婷婷av一区二区三区大白胸| 97se狠狠狠综合亚洲狠狠| 成人精品免费视频| 风间由美一区二区三区在线观看 | 国产片一区二区| 国产欧美一区二区精品忘忧草 | 欧美剧在线免费观看网站| 日本乱人伦一区| 色嗨嗨av一区二区三区| 色94色欧美sute亚洲线路一久| 99精品欧美一区二区蜜桃免费| 波多野结衣中文字幕一区| 成人av免费网站| a亚洲天堂av| 色综合久久中文综合久久牛| 91视频观看视频| 色婷婷综合久久久中文字幕| 欧洲亚洲国产日韩| 欧美日本视频在线| 91精品国产免费| 日韩精品中文字幕在线不卡尤物| 日韩欧美一级精品久久| 欧美电影免费观看高清完整版在线| 日韩欧美另类在线| xfplay精品久久| 国产精品乱人伦中文| 亚洲天堂中文字幕| 亚洲一区二区三区四区五区中文| 亚洲国产精品视频| 日韩精品1区2区3区| 久久99国产精品麻豆| 国产盗摄女厕一区二区三区| 9色porny自拍视频一区二区| 欧美专区亚洲专区| 欧美人体做爰大胆视频| 欧美一级久久久久久久大片| 精品福利在线导航| 欧美激情综合五月色丁香小说| 中文字幕一区二区三区在线观看| 亚洲欧美激情视频在线观看一区二区三区 | 91精品欧美一区二区三区综合在| 欧美mv和日韩mv的网站| 国产亚洲综合色| 亚洲精品乱码久久久久久| 五月天激情小说综合| 精品一区中文字幕| 国产成人精品亚洲777人妖| 91女厕偷拍女厕偷拍高清| 欧美日韩三级一区二区| 26uuu另类欧美| 综合久久久久综合| 日韩成人免费电影| 国产99久久久国产精品潘金| 欧美性色黄大片| 欧美www视频| 自拍视频在线观看一区二区| 五月天激情综合网| 国产91对白在线观看九色|