combineddomainxyplot.java
来自「JfreeChart 常用图表例子」· Java 代码 · 共 667 行 · 第 1/2 页
JAVA
667 行
/* =========================================================== * 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.] * * ------------------------- * CombinedDomainXYPlot.java * ------------------------- * (C) Copyright 2001-2005, by Bill Kelemen and Contributors. * * Original Author: Bill Kelemen; * Contributor(s): David Gilbert (for Object Refinery Limited); * Anthony Boulestreau; * David Basten; * Kevin Frechette (for ISTI); * Nicolas Brodu; * * $Id: CombinedDomainXYPlot.java,v 1.9 2005/05/19 14:03:41 mungady Exp $ * * Changes: * -------- * 06-Dec-2001 : Version 1 (BK); * 12-Dec-2001 : Removed unnecessary 'throws' clause from constructor (DG); * 18-Dec-2001 : Added plotArea attribute and get/set methods (BK); * 22-Dec-2001 : Fixed bug in chartChanged with multiple combinations of * CombinedPlots (BK); * 08-Jan-2002 : Moved to new package com.jrefinery.chart.combination (DG); * 25-Feb-2002 : Updated import statements (DG); * 28-Feb-2002 : Readded "this.plotArea = plotArea" that was deleted from * draw() method (BK); * 26-Mar-2002 : Added an empty zoom method (this method needs to be written so * that combined plots will support zooming (DG); * 29-Mar-2002 : Changed the method createCombinedAxis adding the creation of * OverlaidSymbolicAxis and CombinedSymbolicAxis(AB); * 23-Apr-2002 : Renamed CombinedPlot-->MultiXYPlot, and simplified the * structure (DG); * 23-May-2002 : Renamed (again) MultiXYPlot-->CombinedXYPlot (DG); * 19-Jun-2002 : Added get/setGap() methods suggested by David Basten (DG); * 25-Jun-2002 : Removed redundant imports (DG); * 16-Jul-2002 : Draws shared axis after subplots (to fix missing gridlines), * added overrides of 'setSeriesPaint()' and 'setXYItemRenderer()' * that pass changes down to subplots (KF); * 09-Oct-2002 : Added add(XYPlot) method (DG); * 26-Mar-2003 : Implemented Serializable (DG); * 16-May-2003 : Renamed CombinedXYPlot --> CombinedDomainXYPlot (DG); * 04-Aug-2003 : Removed leftover code that was causing domain axis drawing * problem (DG); * 08-Aug-2003 : Adjusted totalWeight in remove() method (DG); * 21-Aug-2003 : Implemented Cloneable (DG); * 11-Sep-2003 : Fix cloning support (subplots) (NB); * 15-Sep-2003 : Fixed error in cloning (DG); * 16-Sep-2003 : Changed ChartRenderingInfo --> PlotRenderingInfo (DG); * 17-Sep-2003 : Updated handling of 'clicks' (DG); * 12-Nov-2004 : Implemented the new Zoomable interface (DG); * 25-Nov-2004 : Small update to clone() implementation (DG); * 21-Feb-2005 : The getLegendItems() method now returns the fixed legend * items if set (DG); * 05-May-2005 : Removed unused draw() method (DG); * */package org.jfree.chart.plot;import java.awt.Graphics2D;import java.awt.geom.Point2D;import java.awt.geom.Rectangle2D;import java.io.Serializable;import java.util.Collections;import java.util.Iterator;import java.util.List;import org.jfree.chart.LegendItemCollection;import org.jfree.chart.axis.AxisSpace;import org.jfree.chart.axis.AxisState;import org.jfree.chart.axis.NumberAxis;import org.jfree.chart.axis.ValueAxis;import org.jfree.chart.event.PlotChangeEvent;import org.jfree.chart.event.PlotChangeListener;import org.jfree.chart.renderer.xy.XYItemRenderer;import org.jfree.data.Range;import org.jfree.ui.RectangleEdge;import org.jfree.ui.RectangleInsets;import org.jfree.util.ObjectUtilities;import org.jfree.util.PublicCloneable;/** * An extension of {@link XYPlot} that contains multiple subplots that share a * common domain axis. */public class CombinedDomainXYPlot extends XYPlot implements Cloneable, PublicCloneable, Serializable, PlotChangeListener { /** For serialization. */ private static final long serialVersionUID = -7765545541261907383L; /** Storage for the subplot references. */ private List subplots; /** Total weight of all charts. */ private int totalWeight = 0; /** The gap between subplots. */ private double gap = 5.0; /** Temporary storage for the subplot areas. */ private transient Rectangle2D[] subplotAreas; // TODO: the subplot areas needs to be moved out of the plot into the plot // state /** * Default constructor. */ public CombinedDomainXYPlot() { this(new NumberAxis()); } /** * Creates a new combined plot that shares a domain axis among multiple * subplots. * * @param domainAxis the shared axis. */ public CombinedDomainXYPlot(ValueAxis domainAxis) { super( null, // no data in the parent plot domainAxis, null, // no range axis null // no rendereer ); this.subplots = new java.util.ArrayList(); } /** * Returns a string describing the type of plot. * * @return The type of plot. */ public String getPlotType() { return "Combined_Domain_XYPlot"; } /** * Sets the orientation for the plot (also changes the orientation for all * the subplots to match). * * @param orientation the orientation (<code>null</code> not allowed). */ public void setOrientation(PlotOrientation orientation) { super.setOrientation(orientation); Iterator iterator = this.subplots.iterator(); while (iterator.hasNext()) { XYPlot plot = (XYPlot) iterator.next(); plot.setOrientation(orientation); } } /** * Returns the range for the specified axis. This is the combined range * of all the subplots. * * @param axis the axis. * * @return The range (possibly <code>null</code>). */ public Range getDataRange(ValueAxis axis) { Range result = null; if (this.subplots != null) { Iterator iterator = this.subplots.iterator(); while (iterator.hasNext()) { XYPlot subplot = (XYPlot) iterator.next(); result = Range.combine(result, subplot.getDataRange(axis)); } } return result; } /** * Returns the gap between subplots, measured in Java2D units. * * @return The gap (in Java2D units). */ public double getGap() { return this.gap; } /** * Sets the amount of space between subplots and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param gap the gap between subplots (in Java2D units). */ public void setGap(double gap) { this.gap = gap; notifyListeners(new PlotChangeEvent(this)); } /** * Adds a subplot (with a default 'weight' of 1) and sends a * {@link PlotChangeEvent} to all registered listeners. * <P> * The domain axis for the subplot will be set to <code>null</code>. * * @param subplot the subplot (<code>null</code> not permitted). */ public void add(XYPlot subplot) { // defer argument checking add(subplot, 1); } /** * Adds a subplot with the specified weight and sends a * {@link PlotChangeEvent} to all registered listeners. The weight * determines how much space is allocated to the subplot relative to all * the other subplots. * <P> * The domain axis for the subplot will be set to <code>null</code>. * * @param subplot the subplot (<code>null</code> not permitted). * @param weight the weight (must be >= 1). */ public void add(XYPlot subplot, int weight) { if (subplot == null) { throw new IllegalArgumentException("Null 'subplot' argument."); } if (weight <= 0) { throw new IllegalArgumentException("Require weight >= 1."); } // store the plot and its weight subplot.setParent(this); subplot.setWeight(weight); subplot.setInsets(new RectangleInsets(0.0, 0.0, 0.0, 0.0), false); subplot.setDomainAxis(null); subplot.addChangeListener(this); this.subplots.add(subplot); // keep track of total weights this.totalWeight += weight; ValueAxis axis = getDomainAxis(); if (axis != null) { axis.configure(); } notifyListeners(new PlotChangeEvent(this)); } /** * Removes a subplot from the combined chart and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param subplot the subplot (<code>null</code> not permitted). */ public void remove(XYPlot subplot) { if (subplot == null) { throw new IllegalArgumentException(" Null 'subplot' argument."); } int position = -1; int size = this.subplots.size(); int i = 0; while (position == -1 && i < size) { if (this.subplots.get(i) == subplot) { position = i; } i++; } if (position != -1) { this.subplots.remove(position); subplot.setParent(null); subplot.removeChangeListener(this); this.totalWeight -= subplot.getWeight(); ValueAxis domain = getDomainAxis(); if (domain != null) { domain.configure(); } notifyListeners(new PlotChangeEvent(this)); } } /** * Returns the list of subplots. * * @return An unmodifiable list of subplots. */ public List getSubplots() { return Collections.unmodifiableList(this.subplots); } /** * Calculates the axis space required. * * @param g2 the graphics device. * @param plotArea the plot area. * * @return The space. */ protected AxisSpace calculateAxisSpace(Graphics2D g2, Rectangle2D plotArea) { AxisSpace space = new AxisSpace(); PlotOrientation orientation = getOrientation();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?