Package org.jfree.chart.renderer.xy
Class DeviationRenderer.State
- java.lang.Object
-
- org.jfree.chart.renderer.RendererState
-
- org.jfree.chart.renderer.xy.XYItemRendererState
-
- org.jfree.chart.renderer.xy.XYLineAndShapeRenderer.State
-
- org.jfree.chart.renderer.xy.DeviationRenderer.State
-
- Enclosing class:
- DeviationRenderer
public static class DeviationRenderer.State extends XYLineAndShapeRenderer.State
A state object that is passed to each call todrawItem()
.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List
lowerCoordinates
A list of coordinates for the lower y-values in the current series (after translation into Java2D space).java.util.List
upperCoordinates
A list of coordinates for the upper y-values in the current series (after translation into Java2D space).-
Fields inherited from class org.jfree.chart.renderer.xy.XYLineAndShapeRenderer.State
seriesPath
-
Fields inherited from class org.jfree.chart.renderer.xy.XYItemRendererState
workingLine
-
-
Constructor Summary
Constructors Constructor Description State(PlotRenderingInfo info)
Creates a new state instance.
-
Method Summary
-
Methods inherited from class org.jfree.chart.renderer.xy.XYLineAndShapeRenderer.State
isLastPointGood, setLastPointGood, startSeriesPass
-
Methods inherited from class org.jfree.chart.renderer.xy.XYItemRendererState
endSeriesPass, getFirstItemIndex, getLastItemIndex, getProcessVisibleItemsOnly, setProcessVisibleItemsOnly
-
Methods inherited from class org.jfree.chart.renderer.RendererState
getElementHinting, getEntityCollection, getInfo, setElementHinting
-
-
-
-
Field Detail
-
upperCoordinates
public java.util.List upperCoordinates
A list of coordinates for the upper y-values in the current series (after translation into Java2D space).
-
lowerCoordinates
public java.util.List lowerCoordinates
A list of coordinates for the lower y-values in the current series (after translation into Java2D space).
-
-
Constructor Detail
-
State
public State(PlotRenderingInfo info)
Creates a new state instance.- Parameters:
info
- the plot rendering info.
-
-