| java.lang.Object org.jfree.chart.renderer.RendererState org.jfree.chart.renderer.xy.XYItemRendererState
Field Summary | |
public Line2D | workingLine A line object that the renderer can reuse to save instantiating a lot
of objects. |
Method Summary | |
public 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. | public 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. |
workingLine | public Line2D workingLine(Code) | | A line object that the renderer can reuse to save instantiating a lot
of objects.
|
XYItemRendererState | public XYItemRendererState(PlotRenderingInfo info)(Code) | | Creates a new state.
Parameters: info - the plot rendering info. |
getProcessVisibleItemsOnly | public boolean getProcessVisibleItemsOnly()(Code) | | Returns the flag that controls whether the plot passes all data
items in each series to the renderer, or just the visible items. The
default value is true .
A boolean. since: 1.0.6 See Also: XYItemRendererState.setProcessVisibleItemsOnly(boolean) |
setProcessVisibleItemsOnly | public void setProcessVisibleItemsOnly(boolean flag)(Code) | | Sets the flag that controls whether the plot passes all data
items in each series to the renderer, or just the visible items.
Parameters: flag - the new flag value. since: 1.0.6 |
|
|