📄 xydifferencerenderer.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.
*
* -------------------------
* XYDifferenceRenderer.java
* -------------------------
* (C) Copyright 2003 by Object Refinery Limited.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): Christian W. Zuckschwerdt;
*
* $Id: XYDifferenceRenderer.java,v 1.10 2003/07/30 15:51:59 mungady Exp $
*
* Changes:
* --------
* 30-Apr-2003 : Version 1 (DG);
* 30-Jul-2003 : Modified entity constructor (CZ);
*
*/
package org.jfree.chart.renderer;
import java.awt.Graphics2D;
import java.awt.Paint;
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.Serializable;
import org.jfree.chart.ChartRenderingInfo;
import org.jfree.chart.CrosshairInfo;
import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.entity.EntityCollection;
import org.jfree.chart.entity.XYItemEntity;
import org.jfree.chart.plot.XYPlot;
import org.jfree.data.XYDataset;
import org.jfree.ui.RectangleEdge;
/**
* A renderer for an {@link XYPlot} that highlights the differences between two
* series. The renderer expects a dataset that:
* <ul>
* <li>has exactly two series;</li>
* <li>each series has the same x-values;</li>
* <li>no <code>null</code> values;
* </ul>
*
* @author David Gilbert
*/
public class XYDifferenceRenderer extends AbstractXYItemRenderer
implements XYItemRenderer, Serializable {
/** The paint used to highlight positive differences (y(0) > y(1)). */
private Paint positivePaint;
/** The paint used to highlight negative differences (y(0) < y(1)). */
private Paint negativePaint;
/** Display shapes at each point? */
private boolean plotShapes = true;
/**
* Creates a new renderer.
*
* @param positivePaint the highlight color for positive differences;
* @param negativePaint the highlight color for negative differences;
* @param shapes draw shapes?
*/
public XYDifferenceRenderer(Paint positivePaint, Paint negativePaint, boolean shapes) {
this.positivePaint = positivePaint;
this.negativePaint = negativePaint;
this.plotShapes = shapes;
}
/**
* Initialises the renderer then returns the number of 'passes' through the data that the
* renderer will require (usually just one). 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 the renderer requires.
*/
public int initialise(Graphics2D g2,
Rectangle2D dataArea,
XYPlot plot,
XYDataset data,
ChartRenderingInfo info) {
super.initialise(g2, dataArea, plot, data, info);
return 2;
}
/**
* Returns the paint used to highlight positive differences.
*
* @return The paint.
*/
public Paint getPositivePaint() {
return this.positivePaint;
}
/**
* Returns the paint used to highlight negative differences.
*
* @return The paint.
*/
public Paint getNegativePaint() {
return this.positivePaint;
}
/**
* Draws the visual representation of a single data item.
*
* @param g2 the graphics device.
* @param dataArea the area within which the data is being drawn.
* @param info collects information about the drawing.
* @param plot the plot (can be used to obtain standard color information etc).
* @param domainAxis the domain (horizontal) axis.
* @param rangeAxis the range (vertical) axis.
* @param dataset the dataset.
* @param series the series index (zero-based).
* @param item the item index (zero-based).
* @param crosshairInfo information about crosshairs on a plot.
* @param pass the pass index.
*/
public void drawItem(Graphics2D g2,
Rectangle2D dataArea,
ChartRenderingInfo info,
XYPlot plot,
ValueAxis domainAxis,
ValueAxis rangeAxis,
XYDataset dataset,
int series,
int item,
CrosshairInfo crosshairInfo,
int pass) {
if (pass == 0) {
drawItemPass0(g2, dataArea, info, plot, domainAxis, rangeAxis, dataset,
series, item, crosshairInfo);
}
else if (pass == 1) {
drawItemPass1(g2, dataArea, info, plot, domainAxis, rangeAxis, dataset,
series, item, crosshairInfo);
}
}
/**
* Draws the visual representation of a single data item, first pass.
*
* @param g2 the graphics device.
* @param dataArea the area within which the data is being drawn.
* @param info collects information about the drawing.
* @param plot the plot (can be used to obtain standard color information etc).
* @param domainAxis the domain (horizontal) axis.
* @param rangeAxis the range (vertical) axis.
* @param dataset the dataset.
* @param series the series index (zero-based).
* @param item the item index (zero-based).
* @param crosshairInfo information about crosshairs on a plot.
*/
private void drawItemPass0(Graphics2D g2,
Rectangle2D dataArea,
ChartRenderingInfo info,
XYPlot plot,
ValueAxis domainAxis,
ValueAxis rangeAxis,
XYDataset dataset,
int series,
int item,
CrosshairInfo crosshairInfo) {
if (series == 0) {
// get the data points...
Number y0n = dataset.getYValue(0, item);
Number x1n = dataset.getXValue(1, item);
Number y1n = dataset.getYValue(1, item);
RectangleEdge domainAxisLocation = plot.getDomainAxisEdge();
RectangleEdge rangeAxisLocation = plot.getRangeAxisEdge();
double y0 = y0n.doubleValue();
double transY0 = rangeAxis.translateValueToJava2D(y0, dataArea, rangeAxisLocation);
double x1 = x1n.doubleValue();
double y1 = y1n.doubleValue();
double transX1 = domainAxis.translateValueToJava2D(x1, dataArea, domainAxisLocation);
double transY1 = rangeAxis.translateValueToJava2D(y1, dataArea, rangeAxisLocation);
if (item > 0) {
// get the previous data points...
// get the data points...
Number prevx0n = dataset.getXValue(0, item - 1);
Number prevy0n = dataset.getYValue(0, item - 1);
Number prevy1n = dataset.getYValue(1, item - 1);
double prevx0 = prevx0n.doubleValue();
double prevy0 = prevy0n.doubleValue();
double prevtransX0 = domainAxis.translateValueToJava2D(prevx0, dataArea,
domainAxisLocation);
double prevtransY0 = rangeAxis.translateValueToJava2D(prevy0, dataArea,
rangeAxisLocation);
double prevy1 = prevy1n.doubleValue();
double prevtransY1 = rangeAxis.translateValueToJava2D(prevy1, dataArea,
rangeAxisLocation);
Shape positive = getPositiveArea((float) prevtransX0,
(float) prevtransY0, (float) prevtransY1,
(float) transX1,
(float) transY0, (float) transY1);
if (positive != null) {
g2.setPaint(this.positivePaint);
g2.fill(positive);
}
Shape negative = getNegativeArea((float) prevtransX0,
(float) prevtransY0, (float) prevtransY1,
(float) transX1,
(float) transY0, (float) transY1);
if (negative != null) {
g2.setPaint(this.negativePaint);
g2.fill(negative);
}
}
}
}
/**
* Draws the visual representation of a single data item, second pass.
*
* @param g2 the graphics device.
* @param dataArea the area within which the data is being drawn.
* @param info collects information about the drawing.
* @param plot the plot (can be used to obtain standard color information etc).
* @param domainAxis the domain (horizontal) axis.
* @param rangeAxis the range (vertical) axis.
* @param dataset the dataset.
* @param series the series index (zero-based).
* @param item the item index (zero-based).
* @param crosshairInfo information about crosshairs on a plot.
*/
private void drawItemPass1(Graphics2D g2,
Rectangle2D dataArea,
ChartRenderingInfo info,
XYPlot plot,
ValueAxis domainAxis,
ValueAxis rangeAxis,
XYDataset dataset,
int series,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -