📄 symbolicaxis.java
字号:
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (C) Copyright 2000-2004, 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.]
*
* -----------------
* SymbolicAxis.java
* -----------------
* (C) Copyright 2002-2004, by Object Refinery Limited and Contributors.
*
* Original Author: Anthony Boulestreau;
* Contributor(s): David Gilbert (for Object Refinery Limited);
*
*
* Changes (from 23-Jun-2001)
* --------------------------
* 29-Mar-2002 : First version (AB);
* 19-Apr-2002 : Updated formatting and import statements (DG);
* 21-Jun-2002 : Make change to use the class TickUnit - remove valueToString(...) method and
* add SymbolicTickUnit (AB);
* 25-Jun-2002 : Removed redundant code (DG);
* 25-Jul-2002 : Changed order of parameters in ValueAxis constructor (DG);
* 05-Sep-2002 : Updated constructor to reflect changes in the Axis class (DG);
* 08-Nov-2002 : Moved to new package com.jrefinery.chart.axis (DG);
* 14-Feb-2003 : Added back missing constructor code (DG);
* 26-Mar-2003 : Implemented Serializable (DG);
* 14-May-2003 : Renamed HorizontalSymbolicAxis --> SymbolicAxis and merged in
* VerticalSymbolicAxis (DG);
* 12-Aug-2003 : Fixed bug where refreshTicks(...) method has different signature to super
* class (DG);
* 29-Oct-2003 : Added workaround for font alignment in PDF output (DG);
* 02-Nov-2003 : Added code to avoid overlapping labels (MR);
* 07-Nov-2003 : Modified to use new tick classes (DG);
* 18-Nov-2003 : Fixed bug where symbols are not being displayed on the axis (DG);
* 24-Nov-2003 : Added fix for gridlines on zooming (bug id 834643) (DG);
* 21-Jan-2004 : Update for renamed method in ValueAxis (DG);
* 11-Mar-2004 : Modified the way the background grid color is being drawn, see this thread:
* http://www.jfree.org/phpBB2/viewtopic.php?p=22973 (DG);
* 16-Mar-2004 : Added plotState to draw() method (DG);
* 07-Apr-2004 : Modified string bounds calculation (DG);
*
*/
package org.jfree.chart.axis;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Paint;
import java.awt.Shape;
import java.awt.geom.Rectangle2D;
import java.io.Serializable;
import java.text.NumberFormat;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.Vector;
import org.jfree.chart.event.AxisChangeEvent;
import org.jfree.chart.plot.Plot;
import org.jfree.chart.plot.PlotRenderingInfo;
import org.jfree.chart.plot.ValueAxisPlot;
import org.jfree.data.Range;
import org.jfree.text.TextUtilities;
import org.jfree.ui.RectangleEdge;
import org.jfree.ui.TextAnchor;
/**
* A standard linear value axis, for SYMBOLIC values.
*
* @author Anthony Boulestreau
*/
public class SymbolicAxis extends NumberAxis implements Serializable {
/** The default symbolic grid line paint. */
public static final Paint DEFAULT_SYMBOLIC_GRID_LINE_PAINT = new Color(232, 234, 232, 128);
/** The list of symbolic value to display instead of the numeric values. */
private List symbolicValue;
/** List of the symbolic grid lines shapes. */
private List symbolicGridLineList = null;
/** Color of the dark part of the symbolic grid line. **/
private transient Paint symbolicGridPaint;
/** Flag that indicates whether or not symbolic grid lines are visible. */
private boolean symbolicGridLinesVisible;
/**
* Constructs a symbolic axis, using default attribute values where necessary.
*
* @param label the axis label (null permitted).
* @param sv the list of symbolic values to display instead of the numeric value.
*/
public SymbolicAxis(String label, String[] sv) {
super(label);
//initialization of symbolic value
this.symbolicValue = Arrays.asList(sv);
this.symbolicGridLinesVisible = true;
this.symbolicGridPaint = DEFAULT_SYMBOLIC_GRID_LINE_PAINT;
setAutoTickUnitSelection(false, false);
setAutoRangeStickyZero(false);
}
/**
* Returns the list of the symbolic values to display.
*
* @return list of symbolic values.
*/
public String[] getSymbolicValue() {
String[] strToReturn = new String[this.symbolicValue.size()];
strToReturn = (String[]) this.symbolicValue.toArray(strToReturn);
return strToReturn;
}
/**
* Returns the symbolic grid line color.
*
* @return the grid line color.
*/
public Paint getSymbolicGridPaint() {
return this.symbolicGridPaint;
}
/**
* Returns <CODE>true</CODE> if the symbolic grid lines are showing, and
* false otherwise.
*
* @return true if the symbolic grid lines are showing, and false otherwise.
*/
public boolean isGridLinesVisible() {
return this.symbolicGridLinesVisible;
}
/**
* Sets the visibility of the symbolic grid lines and notifies registered
* listeners that the axis has been modified.
*
* @param flag the new setting.
*/
public void setSymbolicGridLinesVisible(boolean flag) {
if (this.symbolicGridLinesVisible != flag) {
this.symbolicGridLinesVisible = flag;
notifyListeners(new AxisChangeEvent(this));
}
}
/**
* This operation is not supported by the symbolic values.
*
* @param g2 the graphics device.
* @param drawArea the area in which the plot and axes should be drawn.
* @param plotArea the area in which the plot should be drawn.
*/
protected void selectAutoTickUnit(Graphics2D g2, Rectangle2D drawArea, Rectangle2D plotArea) {
throw new UnsupportedOperationException();
}
/**
* Draws the axis on a Java 2D graphics device (such as the screen or a printer).
*
* @param g2 the graphics device (<code>null</code> not permitted).
* @param cursor the cursor location.
* @param plotArea the area within which the plot and axes should be drawn (<code>null</code>
* not permitted).
* @param dataArea the area within which the data should be drawn (<code>null</code> not
* permitted).
* @param edge the axis location (<code>null</code> not permitted).
* @param plotState collects information about the plot (<code>null</code> permitted).
*
* @return the axis state (never <code>null</code>).
*/
public AxisState draw(Graphics2D g2,
double cursor,
Rectangle2D plotArea,
Rectangle2D dataArea,
RectangleEdge edge,
PlotRenderingInfo plotState) {
AxisState info = new AxisState(cursor);
if (isVisible()) {
info = super.draw(g2, cursor, plotArea, dataArea, edge, plotState);
}
if (this.symbolicGridLinesVisible) {
drawSymbolicGridLines(g2, plotArea, dataArea, edge, info.getTicks());
}
return info;
}
/**
* Draws the symbolic grid lines.
* <P>
* The colors are consecutively the color specified by
* <CODE>symbolicGridPaint<CODE>
* (<CODE>DEFAULT_SYMBOLIC_GRID_LINE_PAINT</CODE> by default) and white.
*
* @param g2 the graphics device.
* @param plotArea the area within which the chart should be drawn.
* @param dataArea the area within which the plot should be drawn (a subset of the drawArea).
* @param edge the axis location.
* @param ticks the ticks.
*/
public void drawSymbolicGridLines(Graphics2D g2,
Rectangle2D plotArea,
Rectangle2D dataArea,
RectangleEdge edge,
List ticks) {
Shape savedClip = g2.getClip();
g2.clip(dataArea);
if (RectangleEdge.isTopOrBottom(edge)) {
drawSymbolicGridLinesHorizontal(g2, plotArea, dataArea, true, ticks);
}
else if (RectangleEdge.isLeftOrRight(edge)) {
drawSymbolicGridLinesVertical(g2, plotArea, dataArea, true, ticks);
}
g2.setClip(savedClip);
}
/**
* Draws the symbolic grid lines.
* <P>
* The colors are consecutively the color specified by
* <CODE>symbolicGridPaint<CODE>
* (<CODE>DEFAULT_SYMBOLIC_GRID_LINE_PAINT</CODE> by default) and white.
* or if <CODE>firstGridLineIsDark</CODE> is <CODE>true</CODE> white and
* the color specified by <CODE>symbolicGridPaint<CODE>.
*
* @param g2 the graphics device.
* @param plotArea the area within which the chart should be drawn.
* @param dataArea the area within which the plot should be drawn
* (a subset of the drawArea).
* @param firstGridLineIsDark True: the first symbolic grid line take the
* color of <CODE>symbolicGridPaint<CODE>.
* False: the first symbolic grid line is white.
* @param ticks the ticks.
*/
public void drawSymbolicGridLinesHorizontal(Graphics2D g2,
Rectangle2D plotArea,
Rectangle2D dataArea,
boolean firstGridLineIsDark,
List ticks) {
this.symbolicGridLineList = new Vector(ticks.size());
boolean currentGridLineIsDark = firstGridLineIsDark;
double yy = dataArea.getY();
double xx1, xx2;
//gets the outline stroke width of the plot
double outlineStrokeWidth;
if (getPlot().getOutlineStroke() != null) {
outlineStrokeWidth = ((BasicStroke) getPlot().getOutlineStroke()).getLineWidth();
}
else {
outlineStrokeWidth = 1d;
}
Iterator iterator = ticks.iterator();
ValueTick tick;
Rectangle2D symbolicGridLine;
while (iterator.hasNext()) {
tick = (ValueTick) iterator.next();
xx1 = valueToJava2D(tick.getValue() - 0.5d, dataArea, RectangleEdge.BOTTOM);
xx2 = valueToJava2D(tick.getValue() + 0.5d, dataArea, RectangleEdge.BOTTOM);
if (currentGridLineIsDark) {
g2.setPaint(this.symbolicGridPaint);
//g2.setXORMode((Color) this.symbolicGridPaint);
}
else {
g2.setPaint(Color.white);
//g2.setXORMode(Color.white);
}
symbolicGridLine =
new Rectangle2D.Double(xx1,
yy + outlineStrokeWidth, xx2 - xx1,
dataArea.getMaxY() - yy - outlineStrokeWidth);
g2.fill(symbolicGridLine);
this.symbolicGridLineList.add(symbolicGridLine);
currentGridLineIsDark = !currentGridLineIsDark;
}
g2.setPaintMode();
}
/**
* Get the symbolic grid line corresponding to the specified position.
*
* @param position position of the grid line, startinf from 0.
*
* @return the symbolic grid line corresponding to the specified position.
*/
public Rectangle2D.Double getSymbolicGridLine(int position) {
if (this.symbolicGridLineList != null) {
return (Rectangle2D.Double) this.symbolicGridLineList.get(position);
}
else {
return null;
}
}
/**
* Rescales the axis to ensure that all data is visible.
*/
protected void autoAdjustRange() {
Plot plot = getPlot();
if (plot == null) {
return; // no plot, no data
}
if (plot instanceof ValueAxisPlot) {
//ensure that all the symbolic value are displayed
double upper = this.symbolicValue.size() - 1;
double lower = 0;
double range = upper - lower;
// ensure the autorange is at least <minRange> in size...
double minRange = getAutoRangeMinimumSize();
if (range < minRange) {
upper = (upper + lower + minRange) / 2;
lower = (upper + lower - minRange) / 2;
}
//this ensure that the symbolic grid lines will be displayed
//correctly.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -