📄 abstractxyitemrenderer.java
字号:
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* 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.
*
* ---------------------------
* AbstractXYItemRenderer.java
* ---------------------------
* (C) Copyright 2002, 2003, by Object Refinery Limited.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): Richard Atkinson;
* Focus Computer Services Limited;
*
* $Id: AbstractXYItemRenderer.java,v 1.16 2003/08/01 09:47:29 mungady Exp $
*
* Changes:
* --------
* 15-Mar-2002 : Version 1 (DG);
* 09-Apr-2002 : Added a getToolTipGenerator() method reflecting the change in the XYItemRenderer
* interface (DG);
* 05-Aug-2002 : Added a urlGenerator member variable to support HTML image maps (RA);
* 20-Aug-2002 : Added property change events for the tooltip and URL generators (DG);
* 22-Aug-2002 : Moved property change support into AbstractRenderer class (DG);
* 23-Sep-2002 : Fixed errors reported by Checkstyle tool (DG);
* 18-Nov-2002 : Added methods for drawing grid lines (DG);
* 17-Jan-2003 : Moved plot classes into a separate package (DG);
* 25-Mar-2003 : Implemented Serializable (DG);
* 01-May-2003 : Modified initialise(...) return type and drawItem(...) method signature (DG);
* 15-May-2003 : Modified to take into account the plot orientation (DG);
* 21-May-2003 : Added labels to markers (DG);
* 05-Jun-2003 : Added domain and range grid bands (sponsored by Focus Computer Services Ltd) (DG);
* 27-Jul-2003 : Added getRangeType() to support stacked XY area charts (RA);
* 31-Jul-2003 : Deprecated all but the default constructor (DG);
*
*/
package org.jfree.chart.renderer;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Paint;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.font.FontRenderContext;
import java.awt.font.LineMetrics;
import java.awt.geom.Line2D;
import java.awt.geom.Rectangle2D;
import java.io.Serializable;
import org.jfree.chart.ChartRenderingInfo;
import org.jfree.chart.LegendItem;
import org.jfree.chart.Marker;
import org.jfree.chart.MarkerLabelPosition;
import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.labels.XYToolTipGenerator;
import org.jfree.chart.plot.DrawingSupplier;
import org.jfree.chart.plot.Plot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.urls.XYURLGenerator;
import org.jfree.data.Range;
import org.jfree.data.XYDataset;
/**
* A base class that can be used to create new {@link XYItemRenderer} implementations.
*
* @author David Gilbert
*/
public abstract class AbstractXYItemRenderer extends AbstractRenderer
implements XYItemRenderer, Serializable {
/** The plot. */
private XYPlot plot;
/** The tool tip generator. */
private XYToolTipGenerator toolTipGenerator;
/** The URL text generator. */
private XYURLGenerator urlGenerator;
/**
* Default constructor.
*/
protected AbstractXYItemRenderer() {
this.toolTipGenerator = null;
this.urlGenerator = null;
}
/**
* Creates a renderer with the specified tooltip generator.
* <P>
* Storage is allocated for property change listeners.
*
* @param toolTipGenerator the tooltip generator (<code>null</code> permitted).
*
* @deprecated Use default constructor then set tooltip generator.
*/
protected AbstractXYItemRenderer(XYToolTipGenerator toolTipGenerator) {
this(toolTipGenerator, null);
}
/**
* Creates a renderer with the specified tooltip generator.
* <P>
* Storage is allocated for property change listeners.
*
* @param urlGenerator the URL generator (<code>null</code> permitted).
*
* @deprecated Use default constructor then set URL generator.
*/
protected AbstractXYItemRenderer(XYURLGenerator urlGenerator) {
this(null, urlGenerator);
}
/**
* Creates a renderer with the specified tooltip generator and URL generator.
* <P>
* Storage is allocated for property change listeners.
*
* @param toolTipGenerator the tooltip generator (<code>null</code> permitted).
* @param urlGenerator the URL generator (<code>null</code> permitted).
*
* @deprecated Use default constructor then set URL generator.
*/
protected AbstractXYItemRenderer(XYToolTipGenerator toolTipGenerator,
XYURLGenerator urlGenerator) {
this.toolTipGenerator = toolTipGenerator;
this.urlGenerator = urlGenerator;
}
/**
* Returns the plot that the renderer is assigned to.
*
* @return The plot.
*/
public XYPlot getPlot() {
return this.plot;
}
/**
* Sets the plot that the renderer is assigned to.
*
* @param plot the plot.
*/
public void setPlot(XYPlot plot) {
this.plot = plot;
}
/**
* Initialises the renderer.
* <P>
* 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 data the data.
* @param info an optional info collection object to return data back to the caller.
*
* @return The number of passes required by the renderer.
*/
public int initialise(Graphics2D g2,
Rectangle2D dataArea,
XYPlot plot,
XYDataset data,
ChartRenderingInfo info) {
setInfo(info);
return 1;
}
/**
* Returns the tool tip generator.
*
* @return the tool tip generator (possibly <code>null</code>).
*/
public XYToolTipGenerator getToolTipGenerator() {
return this.toolTipGenerator;
}
/**
* Sets the tool tip generator.
*
* @param generator the tool tip generator (<code>null</code> permitted).
*/
public void setToolTipGenerator(XYToolTipGenerator generator) {
Object oldValue = this.toolTipGenerator;
this.toolTipGenerator = generator;
firePropertyChanged("renderer.ToolTipGenerator", oldValue, generator);
}
/**
* Returns the URL generator for HTML image maps.
*
* @return the URL generator (possibly <code>null</code>).
*/
public XYURLGenerator getURLGenerator() {
return this.urlGenerator;
}
/**
* Sets the URL generator for HTML image maps.
*
* @param urlGenerator the URL generator (<code>null</code> permitted).
*/
public void setURLGenerator(XYURLGenerator urlGenerator) {
Object oldValue = this.urlGenerator;
this.urlGenerator = urlGenerator;
firePropertyChanged("renderer.URLGenerator", oldValue, urlGenerator);
}
/**
* Returns the range type for the renderer.
* <p>
* The default implementation returns <code>STANDARD</code>, subclasses may override this
* behaviour.
* <p>
* The {@link org.jfree.chart.plot.CategoryPlot} uses this information when auto-calculating the range for the axis.
*
* @return the range type.
*/
public RangeType getRangeType() {
return RangeType.STANDARD;
}
/**
* Returns a legend item for a series.
*
* @param datasetIndex the dataset index (zero-based).
* @param series the series index (zero-based).
*
* @return a legend item for the series.
*/
public LegendItem getLegendItem(int datasetIndex, int series) {
LegendItem result = null;
XYPlot plot = (XYPlot) getPlot();
if (plot != null) {
XYDataset dataset;
if (datasetIndex == 0) {
dataset = (XYDataset) plot.getDataset();
}
else {
dataset = (XYDataset) plot.getSecondaryDataset(datasetIndex - 1);
}
if (dataset != null) {
String label = dataset.getSeriesName(series);
String description = label;
Shape shape = getSeriesShape(series);
Paint paint = getSeriesPaint(series);
Paint outlinePaint = getSeriesOutlinePaint(series);
Stroke stroke = getSeriesStroke(series);
result = new LegendItem(label, description,
shape, paint, outlinePaint, stroke);
}
}
return result;
}
/**
* Fills a band between two values on the axis. This can be used to color bands between the
* grid lines.
*
* @param g2 the graphics device.
* @param plot the plot.
* @param axis the domain axis.
* @param dataArea the data area.
* @param start the start value.
* @param end the end value.
*/
public void fillDomainGridBand(Graphics2D g2,
XYPlot plot,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -