categoryitemrenderer.java

来自「JfreeChart 常用图表例子」· Java 代码 · 共 1,409 行 · 第 1/4 页

JAVA
1,409
字号
/* =========================================================== * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] * * ------------------------- * CategoryItemRenderer.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); * * $Id: CategoryItemRenderer.java,v 1.10 2005/06/02 08:47:49 mungady Exp $ * * Changes * ------- * 23-Oct-2001 : Version 1 (DG); * 16-Jan-2002 : Renamed HorizontalCategoryItemRenderer.java  *               --> CategoryItemRenderer.java (DG); * 05-Feb-2002 : Changed return type of the drawCategoryItem method from void  *               to Shape, as part of the tooltips implementation (DG)         * *               NOTE (30-May-2002) : this has subsequently been changed back  *               to void, tooltips are now collected along with entities in  *               ChartRenderingInfo (DG); * * 14-Mar-2002 : Added the initialise method, and changed all bar plots to use  *               this renderer (DG); * 23-May-2002 : Added ChartRenderingInfo to the initialise method (DG); * 29-May-2002 : Added the getAxisArea(Rectangle2D) method (DG); * 06-Jun-2002 : Updated Javadoc comments (DG); * 26-Jun-2002 : Added range axis to the initialise method (DG); * 24-Sep-2002 : Added getLegendItem() method (DG); * 23-Oct-2002 : Added methods to get/setToolTipGenerator (DG); * 05-Nov-2002 : Replaced references to CategoryDataset with TableDataset (DG); * 06-Nov-2002 : Added the domain axis to the drawCategoryItem method.  Renamed *               drawCategoryItem() --> drawItem() (DG); * 20-Nov-2002 : Changed signature of drawItem() method to reflect use of  *               TableDataset (DG); * 26-Nov-2002 : Replaced the isStacked() method with the getRangeType()  *               method (DG); * 08-Jan-2003 : Changed getSeriesCount() --> getRowCount() and *               getCategoryCount() --> getColumnCount() (DG); * 09-Jan-2003 : Changed name of grid-line methods (DG); * 21-Jan-2003 : Merged TableDataset with CategoryDataset (DG); * 10-Apr-2003 : Changed CategoryDataset to KeyedValues2DDataset in  *               drawItem() method (DG); * 29-Apr-2003 : Eliminated Renderer interface (DG); * 02-Sep-2003 : Fix for bug 790407 (DG); * 16-Sep-2003 : Changed ChartRenderingInfo --> PlotRenderingInfo (DG); * 20-Oct-2003 : Added setOutlinePaint() method (DG); * 06-Feb-2004 : Added missing methods, and moved deprecated methods (DG); * 19-Feb-2004 : Added extra setXXXLabelsVisible() methods (DG); * 29-Apr-2004 : Changed Integer --> int in initialise() method (DG); * 18-May-2004 : Added methods for item label paint (DG); * 05-Nov-2004 : Added getPassCount() method and 'pass' parameter to drawItem()  *               method (DG); * 07-Jan-2005 : Renamed getRangeExtent() --> findRangeBounds (DG); * 11-Jan-2005 : Removed deprecated code in preparation for 1.0.0 release (DG); * 23-Feb-2005 : Now extends LegendItemSource (DG); * 20-Apr-2005 : Renamed CategoryLabelGenerator  *               --> CategoryItemLabelGenerator (DG); * 20-May-2005 : Added drawDomainMarker() method (DG); *  */package org.jfree.chart.renderer.category;import java.awt.Font;import java.awt.Graphics2D;import java.awt.Paint;import java.awt.Shape;import java.awt.Stroke;import java.awt.geom.Rectangle2D;import org.jfree.chart.LegendItem;import org.jfree.chart.LegendItemSource;import org.jfree.chart.axis.CategoryAxis;import org.jfree.chart.axis.ValueAxis;import org.jfree.chart.event.RendererChangeEvent;import org.jfree.chart.event.RendererChangeListener;import org.jfree.chart.labels.CategoryItemLabelGenerator;import org.jfree.chart.labels.CategoryToolTipGenerator;import org.jfree.chart.labels.ItemLabelPosition;import org.jfree.chart.plot.CategoryMarker;import org.jfree.chart.plot.CategoryPlot;import org.jfree.chart.plot.Marker;import org.jfree.chart.plot.PlotRenderingInfo;import org.jfree.chart.urls.CategoryURLGenerator;import org.jfree.data.Range;import org.jfree.data.category.CategoryDataset;/** * A plug-in object that is used by the {@link CategoryPlot} class to display  * individual data items from a {@link CategoryDataset}. * <p> * This interface defines the methods that must be provided by all renderers.   * If you are implementing a custom renderer, you should consider extending the * {@link AbstractCategoryItemRenderer} class. * <p> * Most renderer attributes are defined using a "three layer" approach.  When  * looking up an attribute (for example, the outline paint) the renderer first  * checks to see if there is a setting (in layer 0) that applies to ALL items  * that the renderer draws.  If there is, that setting is used, but if it is  * <code>null</code> the renderer looks up the next layer, which contains  * "per series" settings for the attribute (many attributes are defined on a * per series basis, so this is the layer that is most commonly used).  If the  * layer 1 setting is <code>null</code>, the renderer will look up the final  * layer, which provides a default or "base" setting.  Some attributes allow  * the base setting to be <code>null</code>, while other attributes enforce  * non-<code>null</code> values. */public interface CategoryItemRenderer extends LegendItemSource {    /**     * Returns the number of passes through the dataset required by the      * renderer.  Usually this will be one, but some renderers may use     * a second or third pass to overlay items on top of things that were     * drawn in an earlier pass.     *      * @return The pass count.     */    public int getPassCount();    /**     * Returns the plot that the renderer has been assigned to (where      * <code>null</code> indicates that the renderer is not currently assigned      * to a plot).     *     * @return The plot (possibly <code>null</code>).     */    public CategoryPlot getPlot();    /**     * Sets the plot that the renderer has been assigned to.  This method is      * usually called by the {@link CategoryPlot}, in normal usage you      * shouldn't need to call this method directly.     *     * @param plot  the plot (<code>null</code> not permitted).     */    public void setPlot(CategoryPlot plot);    /**     * Adds a change listener.     *      * @param listener  the listener.     */    public void addChangeListener(RendererChangeListener listener);        /**     * Removes a change listener.     *      * @param listener  the listener.     */    public void removeChangeListener(RendererChangeListener listener);    /**     * Returns the range of values the renderer requires to display all the      * items from the specified dataset.     *      * @param dataset  the dataset (<code>null</code> permitted).     *      * @return The range (or <code>null</code> if the dataset is      *         <code>null</code> or empty).     */    public Range findRangeBounds(CategoryDataset dataset);        /**     * Initialises the renderer.  This method will be called before the first      * item is rendered, giving the renderer an opportunity to initialise any      * state information it wants to maintain. The renderer can do nothing if      * it chooses.     *     * @param g2  the graphics device.     * @param dataArea  the area inside the axes.     * @param plot  the plot.     * @param rendererIndex  the renderer index.     * @param info  collects chart rendering information for return to caller.     *      * @return A state object (maintains state information relevant to one      *         chart drawing).     */    public CategoryItemRendererState initialise(Graphics2D g2,                                                Rectangle2D dataArea,                                                CategoryPlot plot,                                                int rendererIndex,                                                PlotRenderingInfo info);                               /**     * Returns a boolean that indicates whether or not the specified item      * should be drawn (this is typically used to hide an entire series).     *      * @param series  the series index.     * @param item  the item index.     *      * @return A boolean.     */    public boolean getItemVisible(int series, int item);        /**     * Returns a boolean that indicates whether or not the specified series      * should be drawn (this is typically used to hide an entire series).     *      * @param series  the series index.     *      * @return A boolean.     */    public boolean isSeriesVisible(int series);        /**     * Returns the flag that controls the visibility of ALL series.  This flag      * overrides the per series and default settings - you must set it to      * <code>null</code> if you want the other settings to apply.     *      * @return The flag (possibly <code>null</code>).     */    public Boolean getSeriesVisible();        /**     * Sets the flag that controls the visibility of ALL series and sends a      * {@link RendererChangeEvent} to all registered listeners.  This flag      * overrides the per series and default settings - you must set it to      * <code>null</code> if you want the other settings to apply.     *      * @param visible  the flag (<code>null</code> permitted).     */    public void setSeriesVisible(Boolean visible);        /**     * Sets the flag that controls the visibility of ALL series and sends a      * {@link RendererChangeEvent} to all registered listeners.  This flag      * overrides the per series and default settings - you must set it to      * <code>null</code> if you want the other settings to apply.     *      * @param visible  the flag (<code>null</code> permitted).     * @param notify  notify listeners?     */    public void setSeriesVisible(Boolean visible, boolean notify);        /**     * Returns the flag that controls whether a series is visible.     *     * @param series  the series index (zero-based).     *     * @return The flag (possibly <code>null</code>).     */    public Boolean getSeriesVisible(int series);        /**     * Sets the flag that controls whether a series is visible and sends a      * {@link RendererChangeEvent} to all registered listeners.     *     * @param series  the series index (zero-based).     * @param visible  the flag (<code>null</code> permitted).     */    public void setSeriesVisible(int series, Boolean visible);        /**     * Sets the flag that controls whether a series is visible and, if      * requested, sends a {@link RendererChangeEvent} to all registered      * listeners.     *      * @param series  the series index.     * @param visible  the flag (<code>null</code> permitted).     * @param notify  notify listeners?     */    public void setSeriesVisible(int series, Boolean visible, boolean notify);    /**     * Returns the base visibility for all series.     *     * @return The base visibility.     */    public boolean getBaseSeriesVisible();    /**     * Sets the base visibility and sends a {@link RendererChangeEvent} to all     * registered listeners.     *     * @param visible  the flag.     */    public void setBaseSeriesVisible(boolean visible);        /**     * Sets the base visibility and, if requested, sends      * a {@link RendererChangeEvent} to all registered listeners.     *      * @param visible  the visibility.     * @param notify  notify listeners?     */    public void setBaseSeriesVisible(boolean visible, boolean notify);    // SERIES VISIBLE IN LEGEND (not yet respected by all renderers)        /**     * Returns <code>true</code> if the series should be shown in the legend,     * and <code>false</code> otherwise.     *      * @param series  the series index.     *      * @return A boolean.     */    public boolean isSeriesVisibleInLegend(int series);        /**     * Returns the flag that controls the visibility of ALL series in the      * legend.  This flag overrides the per series and default settings - you      * must set it to <code>null</code> if you want the other settings to      * apply.     *      * @return The flag (possibly <code>null</code>).     */    public Boolean getSeriesVisibleInLegend();        /**     * Sets the flag that controls the visibility of ALL series in the legend      * and sends a {@link RendererChangeEvent} to all registered listeners.       * This flag overrides the per series and default settings - you must set      * it to <code>null</code> if you want the other settings to apply.     *      * @param visible  the flag (<code>null</code> permitted).     */    public void setSeriesVisibleInLegend(Boolean visible);        /**     * Sets the flag that controls the visibility of ALL series in the legend      * and sends a {@link RendererChangeEvent} to all registered listeners.       * This flag overrides the per series and default settings - you must set      * it to <code>null</code> if you want the other settings to apply.     * 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?