Class BarPlot

All Implemented Interfaces:
ChartPlot, Serializable

public class BarPlot extends StandardPlot
A general class for plotting data of groups of values. This plot can use data from any class that implements the BaseDataset interface.
Since:
8.0
See Also:
  • Field Details

    • DEFAULT_STYLE

      public static final BarStyle DEFAULT_STYLE
      Default chart style with this plot.
    • ITEM_LABEL_ALIGNMENT_AUTO

      public static final int ITEM_LABEL_ALIGNMENT_AUTO
      A auto label alignment, is default.
      See Also:
    • ITEM_LABEL_ALIGNMENT_VERTICAL

      public static final int ITEM_LABEL_ALIGNMENT_VERTICAL
      A vertical label alignment.
      See Also:
    • ITEM_LABEL_ALIGNMENT_HORIZONTAL

      public static final int ITEM_LABEL_ALIGNMENT_HORIZONTAL
      A horizontal label alignment.
      See Also:
    • DEFAULT_BAR_MARGIN_PERCENT

      public static final double DEFAULT_BAR_MARGIN_PERCENT
      The default bar margin percentage.
      See Also:
    • DEFAULT_BAR_WIDTH

      public static final double DEFAULT_BAR_WIDTH
      The default bar width.
      See Also:
  • Constructor Details

    • BarPlot

      public BarPlot()
      Creates a bar plot with default properties.
      Since:
      8.0
    • BarPlot

      public BarPlot(BarStyle style)
      Creates a bar plot with defined chart style. Initializes all properties with default values.
      Parameters:
      style - the chart style (null not permitted)
      Since:
      8.0
      See Also:
  • Method Details