|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jfree.chart.plot.Plot
org.jfree.chart.plot.FastScatterPlot
A fast scatter plot.
| Field Summary | |
protected static java.util.ResourceBundle |
localizationResources
The resourceBundle for the localization. |
| Fields inherited from class org.jfree.chart.plot.Plot |
DEFAULT_BACKGROUND_ALPHA, DEFAULT_BACKGROUND_PAINT, DEFAULT_FOREGROUND_ALPHA, DEFAULT_INSETS, DEFAULT_OUTLINE_PAINT, DEFAULT_OUTLINE_STROKE, MINIMUM_HEIGHT_TO_DRAW, MINIMUM_WIDTH_TO_DRAW, ZERO |
| Constructor Summary | |
FastScatterPlot()
Creates an empty plot. |
|
FastScatterPlot(float[][] data,
ValueAxis domainAxis,
ValueAxis rangeAxis)
Creates a new fast scatter plot. |
|
| Method Summary | |
java.lang.Object |
clone()
Returns a clone of the plot. |
void |
draw(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D plotArea,
PlotState parentState,
PlotRenderingInfo info)
Draws the fast scatter plot on a Java 2D graphics device (such as the screen or a printer). |
boolean |
equals(java.lang.Object object)
Tests an object for equality with this instance. |
Range |
getDataRange(ValueAxis axis)
Returns the range of data values to be plotted along the axis. |
ValueAxis |
getDomainAxis()
Returns the domain axis for the plot. |
java.awt.Paint |
getPaint()
Returns the paint used to plot data points. |
java.lang.String |
getPlotType()
Returns a short string describing the plot type. |
ValueAxis |
getRangeAxis()
Returns the range axis for the plot. |
void |
render(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
PlotRenderingInfo info,
CrosshairInfo crosshairInfo)
Draws a representation of the data within the dataArea region. |
void |
setPaint(java.awt.Paint paint)
Sets the color for the data points. |
void |
zoomHorizontalAxes(double factor)
Multiplies the range on the horizontal axis/axes by the specified factor (not yet implemented). |
void |
zoomHorizontalAxes(double lowerPercent,
double upperPercent)
Zooms in on the horizontal axes (not yet implemented). |
void |
zoomVerticalAxes(double factor)
Multiplies the range on the vertical axis/axes by the specified factor (not yet implemented). |
void |
zoomVerticalAxes(double lowerPercent,
double upperPercent)
Zooms in on the vertical axes (not yet implemented). |
| Methods inherited from class java.lang.Object |
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected static java.util.ResourceBundle localizationResources
| Constructor Detail |
public FastScatterPlot()
public FastScatterPlot(float[][] data,
ValueAxis domainAxis,
ValueAxis rangeAxis)
The data is an array of x, y values: data[0][i] = x, data[1][i] = y.
data - the data.domainAxis - the domain (x) axis.rangeAxis - the range (y) axis.| Method Detail |
public java.lang.String getPlotType()
getPlotType in class Plotpublic ValueAxis getDomainAxis()
public ValueAxis getRangeAxis()
public java.awt.Paint getPaint()
public void setPaint(java.awt.Paint paint)
paint - the paint.
public void draw(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D plotArea,
PlotState parentState,
PlotRenderingInfo info)
draw in class Plotg2 - the graphics device.plotArea - the area within which the plot (including axis labels) should be drawn.parentState - the state from the parent plot, if there is one.info - collects chart drawing information (null permitted).
public void render(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
PlotRenderingInfo info,
CrosshairInfo crosshairInfo)
The info and crosshairInfo arguments may be null.
g2 - the graphics device.dataArea - the region in which the data is to be drawn.info - an optional object for collection dimension information.crosshairInfo - an optional object for collecting crosshair info.public Range getDataRange(ValueAxis axis)
getDataRange in interface ValueAxisPlotaxis - the axis.
public void zoomHorizontalAxes(double factor)
zoomHorizontalAxes in interface ValueAxisPlotfactor - the zoom factor.
public void zoomHorizontalAxes(double lowerPercent,
double upperPercent)
zoomHorizontalAxes in interface ValueAxisPlotlowerPercent - the new lower bound as a percentage of the current range.upperPercent - the new upper bound as a percentage of the current range.public void zoomVerticalAxes(double factor)
zoomVerticalAxes in interface ValueAxisPlotfactor - the zoom factor.
public void zoomVerticalAxes(double lowerPercent,
double upperPercent)
zoomVerticalAxes in interface ValueAxisPlotlowerPercent - the new lower bound as a percentage of the current range.upperPercent - the new upper bound as a percentage of the current range.public boolean equals(java.lang.Object object)
equals in class Plotobject - the object to test.
public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
clone in class Plotjava.lang.CloneNotSupportedException - if some component of the plot does not support cloning.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||