org.jfree.chart.renderer.xy
Class XYItemRendererState

java.lang.Object
  extended by org.jfree.chart.renderer.RendererState
      extended by org.jfree.chart.renderer.xy.XYItemRendererState
Direct Known Subclasses:
StandardXYItemRenderer.State, XYBarRenderer.XYBarRendererState, XYLineAndShapeRenderer.State

public class XYItemRendererState
extends RendererState

The state for an XYItemRenderer.


Field Summary
 java.awt.geom.Line2D workingLine
          A line object that the renderer can reuse to save instantiating a lot of objects.
 
Constructor Summary
XYItemRendererState(PlotRenderingInfo info)
          Creates a new state.
 
Method Summary
 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.
 
Methods inherited from class org.jfree.chart.renderer.RendererState
getEntityCollection, getInfo
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

workingLine

public java.awt.geom.Line2D workingLine
A line object that the renderer can reuse to save instantiating a lot of objects.

Constructor Detail

XYItemRendererState

public XYItemRendererState(PlotRenderingInfo info)
Creates a new state.

Parameters:
info - the plot rendering info.
Method Detail

getProcessVisibleItemsOnly

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. The default value is true.

Returns:
A boolean.
Since:
1.0.6
See Also:
setProcessVisibleItemsOnly(boolean)

setProcessVisibleItemsOnly

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.

Parameters:
flag - the new flag value.
Since:
1.0.6