Class StatisticalLineAndShapeRenderer

All Implemented Interfaces:
Serializable, Cloneable, LegendItemSource, CategoryItemRenderer, PublicCloneable

public class StatisticalLineAndShapeRenderer extends LineAndShapeRenderer implements Cloneable, PublicCloneable, Serializable
A renderer that draws shapes for each data item, and lines between data items. Each point has a mean value and a standard deviation line. For use with the CategoryPlot class. The example shown here is generated by the StatisticalLineChartDemo1.java program included in the JFreeChart Demo Collection:

StatisticalLineRendererSample.png
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      For serialization.
      See Also:
    • errorIndicatorPaint

      private transient Paint errorIndicatorPaint
      The paint used to show the error indicator.
    • errorIndicatorStroke

      private transient Stroke errorIndicatorStroke
      The stroke used to draw the error indicators. If null, the renderer will use the itemOutlineStroke.
  • Constructor Details

    • StatisticalLineAndShapeRenderer

      public StatisticalLineAndShapeRenderer()
      Constructs a default renderer (draws shapes and lines).
    • StatisticalLineAndShapeRenderer

      public StatisticalLineAndShapeRenderer(boolean linesVisible, boolean shapesVisible)
      Constructs a new renderer.
      Parameters:
      linesVisible - draw lines?
      shapesVisible - draw shapes?
  • Method Details