Class Overview
A state object that is passed to each call to drawItem
.
Summary
Fields |
public
List |
lowerCoordinates |
A list of coordinates for the lower y-values in the current series
(after translation into Java2D space). |
public
List |
upperCoordinates |
A list of coordinates for the upper y-values in the current series
(after translation into Java2D space). |
[Expand]
Inherited Methods |
From class
org.jfree.chart.renderer.xy.XYLineAndShapeRenderer.State
boolean
|
isLastPointGood()
Returns a flag that indicates if the last point drawn (in the
current series) was 'good' (non-null).
|
void
|
setLastPointGood(boolean good)
Sets a flag that indicates if the last point drawn (in the current
series) was 'good' (non-null).
|
void
|
startSeriesPass(XYDataset dataset, int series, int firstItem, int lastItem, int pass, int passCount)
This method is called by the XYPlot at the start of each
series pass.
|
|
From class
org.jfree.chart.renderer.xy.XYItemRendererState
void
|
endSeriesPass(XYDataset dataset, int series, int firstItem, int lastItem, int pass, int passCount)
This method is called by the XYPlot when it ends a pass
through the (visible) items in a series.
|
int
|
getFirstItemIndex()
|
int
|
getLastItemIndex()
|
boolean
|
getProcessVisibleItemsOnly()
Returns the flag that controls whether the plot passes all data
items in each series to the renderer, or just the visible items.
|
void
|
setProcessVisibleItemsOnly(boolean flag)
Sets the flag that controls whether the plot passes all data
items in each series to the renderer, or just the visible items.
|
void
|
startSeriesPass(XYDataset dataset, int series, int firstItem, int lastItem, int pass, int passCount)
This method is called by the XYPlot when it starts a pass
through the (visible) items in a series.
|
|
From class
org.jfree.chart.renderer.RendererState
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
Fields
public
List
lowerCoordinates
A list of coordinates for the lower y-values in the current series
(after translation into Java2D space).
public
List
upperCoordinates
A list of coordinates for the upper y-values in the current series
(after translation into Java2D space).
Public Constructors
public
DeviationRenderer.State
(PlotRenderingInfo info)
Creates a new state instance.
Parameters
info
| the plot rendering info.
|