stackedxybarrenderer.java

来自「JfreeChart 常用图表例子」· Java 代码 · 共 312 行

JAVA
312
字号
/* =========================================================== * 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.] * * ------------------------- * StackedXYBarRenderer.java * ------------------------- * (C) Copyright 2004, 2005, by Andreas Schroeder and Contributors. * * Original Author:  Andreas Schroeder; * Contributor(s):   David Gilbert (for Object Refinery Limited);           * * $Id: StackedXYBarRenderer.java,v 1.10 2005/05/19 14:01:50 mungady Exp $ * * Changes * ------- * 01-Apr-2004 : Version 1 (AS); * 15-Jul-2004 : Switched getX() with getXValue() and getY() with  *               getYValue() (DG); * 15-Aug-2004 : Added drawBarOutline to control draw/don't-draw bar  *               outlines (BN); * 10-Sep-2004 : drawBarOutline attribute is now inherited from XYBarRenderer  *               and double primitives are retrieved from the dataset rather  *               than Number objects (DG); * 07-Jan-2005 : Updated for method name change in DatasetUtilities (DG); * 25-Jan-2005 : Modified to handle negative values correctly (DG); *  */package org.jfree.chart.renderer.xy;import java.awt.Graphics2D;import java.awt.geom.Rectangle2D;import java.io.Serializable;import org.jfree.chart.axis.ValueAxis;import org.jfree.chart.entity.EntityCollection;import org.jfree.chart.entity.XYItemEntity;import org.jfree.chart.labels.XYToolTipGenerator;import org.jfree.chart.plot.CrosshairState;import org.jfree.chart.plot.PlotOrientation;import org.jfree.chart.plot.PlotRenderingInfo;import org.jfree.chart.plot.XYPlot;import org.jfree.data.Range;import org.jfree.data.general.DatasetUtilities;import org.jfree.data.xy.IntervalXYDataset;import org.jfree.data.xy.TableXYDataset;import org.jfree.data.xy.XYDataset;import org.jfree.ui.RectangleEdge;/** * A bar renderer that displays the series items stacked. * The dataset used together with this renderer must be a * {@link org.jfree.data.xy.IntervalXYDataset} and a * {@link org.jfree.data.xy.TableXYDataset}. For example, the * dataset class {@link org.jfree.data.xy.CategoryTableXYDataset} * implements both interfaces. * * @author andreas.schroeder */public class StackedXYBarRenderer extends XYBarRenderer                                   implements Serializable {      /** For serialization. */    private static final long serialVersionUID = -7049101055533436444L;        /**     * Creates a new renderer.     */    public StackedXYBarRenderer() {        super();    }    /**     * Creates a new renderer.     *     * @param margin  the percentual amount of the bars that are cut away.     */    public StackedXYBarRenderer(double margin) {        super(margin);    }    /**     * Initialises the renderer and returns a state object that should be      * passed to all subsequent calls to the drawItem() method. Here there is      * nothing to do.     *     * @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 A state object.     */    public XYItemRendererState initialise(Graphics2D g2,                                          Rectangle2D dataArea,                                          XYPlot plot,                                          XYDataset data,                                          PlotRenderingInfo info) {        return new XYBarRendererState(info);    }    /**     * 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 (<code>null</code> if the dataset is <code>null</code>     *         or empty).     */    public Range findRangeBounds(XYDataset dataset) {        if (dataset != null) {            return DatasetUtilities.findStackedRangeBounds(                (TableXYDataset) dataset            );        }        else {            return null;        }    }    /**     * Draws the visual representation of a single data item.     *     * @param g2  the graphics device.     * @param state  the renderer state.     * @param dataArea  the area within which the plot 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 axis.     * @param rangeAxis  the range axis.     * @param dataset  the dataset.     * @param series  the series index (zero-based).     * @param item  the item index (zero-based).     * @param crosshairState  crosshair information for the plot      *                        (<code>null</code> permitted).     * @param pass  the pass index.     */    public void drawItem(Graphics2D g2,                          XYItemRendererState state,                         Rectangle2D dataArea,                         PlotRenderingInfo info,                         XYPlot plot,                         ValueAxis domainAxis,                         ValueAxis rangeAxis,                         XYDataset dataset,                         int series,                         int item,                         CrosshairState crosshairState,                         int pass) {        if (!(dataset instanceof IntervalXYDataset                 && dataset instanceof TableXYDataset)) {            String message = "dataset (type " + dataset.getClass().getName()                 + ") has wrong type:";            boolean and = false;            if (!IntervalXYDataset.class.isAssignableFrom(dataset.getClass())) {                message += " it is no IntervalXYDataset";                and = true;            }            if (!TableXYDataset.class.isAssignableFrom(dataset.getClass())) {                if (and) {                    message += " and";                }                message += " it is no TableXYDataset";            }            throw new IllegalArgumentException(message);        }        IntervalXYDataset intervalDataset = (IntervalXYDataset) dataset;        double value = intervalDataset.getYValue(series, item);        if (Double.isNaN(value)) {            return;        }        double positiveBase = 0.0;        double negativeBase = 0.0;        for (int i = 0; i < series; i++) {            double v = dataset.getYValue(i, item);            if (!Double.isNaN(v)) {                if (v > 0) {                    positiveBase = positiveBase + v;                }                else {                    negativeBase = negativeBase + v;                }            }        }        double translatedBase;        double translatedValue;        RectangleEdge edgeR = plot.getRangeAxisEdge();        if (value > 0.0) {            translatedBase = rangeAxis.valueToJava2D(                positiveBase, dataArea, edgeR            );            translatedValue = rangeAxis.valueToJava2D(                positiveBase + value, dataArea, edgeR            );        }        else {            translatedBase = rangeAxis.valueToJava2D(                negativeBase, dataArea, edgeR            );            translatedValue = rangeAxis.valueToJava2D(                negativeBase + value, dataArea, edgeR            );        }        RectangleEdge edgeD = plot.getDomainAxisEdge();        double startX = intervalDataset.getStartXValue(series, item);        if (Double.isNaN(startX)) {            return;        }        double translatedStartX = domainAxis.valueToJava2D(            startX, dataArea, edgeD        );        double endX = intervalDataset.getEndXValue(series, item);        if (Double.isNaN(endX)) {            return;        }        double translatedEndX = domainAxis.valueToJava2D(endX, dataArea, edgeD);        double translatedWidth = Math.max(            1, Math.abs(translatedEndX - translatedStartX)        );        double translatedHeight = Math.abs(translatedValue - translatedBase);        if (getMargin() > 0.0) {            double cut = translatedWidth * getMargin();            translatedWidth = translatedWidth - cut;            translatedStartX = translatedStartX + cut / 2;        }        Rectangle2D bar = null;        PlotOrientation orientation = plot.getOrientation();        if (orientation == PlotOrientation.HORIZONTAL) {            bar = new Rectangle2D.Double(                Math.min(translatedBase, translatedValue),                translatedEndX,                translatedHeight,                translatedWidth            );        }        else if (orientation == PlotOrientation.VERTICAL) {            bar = new Rectangle2D.Double(                translatedStartX,                Math.min(translatedBase, translatedValue),                translatedWidth,                translatedHeight            );        }        g2.setPaint(getItemPaint(series, item));        g2.fill(bar);        if (isDrawBarOutline()                 && Math.abs(translatedEndX - translatedStartX) > 3) {            g2.setStroke(getItemStroke(series, item));            g2.setPaint(getItemOutlinePaint(series, item));            g2.draw(bar);        }        // add an entity for the item...        if (info != null) {            EntityCollection entities = info.getOwner().getEntityCollection();            if (entities != null) {                String tip = null;                XYToolTipGenerator generator                     = getToolTipGenerator(series, item);                if (generator != null) {                    tip = generator.generateToolTip(dataset, series, item);                }                String url = null;                if (getURLGenerator() != null) {                    url = getURLGenerator().generateURL(dataset, series, item);                }                XYItemEntity entity = new XYItemEntity(                    bar, dataset, series, item, tip, url                );                entities.add(entity);            }        }    }    }

⌨️ 快捷键说明

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