Class Overview
Records the state for the renderer. This is used to preserve state
information between calls to the drawItem() method for a single chart
drawing.
Summary
Public Methods |
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.
|
[Expand]
Inherited Methods |
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)
|
|
Public Constructors
public
SamplingXYLineRenderer.State
(PlotRenderingInfo info)
Creates a new state instance.
Parameters
info
| the plot rendering info.
|
Public Methods
public
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. We reset the state for the current series.
Parameters
dataset
| the dataset. |
series
| the series index. |
firstItem
| the first item index for this pass. |
lastItem
| the last item index for this pass. |
pass
| the current pass index. |
passCount
| the number of passes.
|