Class DotSeries

All Implemented Interfaces:
AdvancedMarker<DotSeries>, ColorizedSeries<DotSeries>

public class DotSeries extends AxesBaseSeries implements AdvancedMarker<DotSeries>, ColorizedSeries<DotSeries>
Series object displayed on the dot chart.
Since:
4.0
Author:
JBStrap
  • Constructor Details

    • DotSeries

      public DotSeries(String title)
      Creates a dot chart that can be displayed on the series object.
      Parameters:
      title - Series title (required)
      Throws:
      NullPointerException - Thrown if the specified series name is null
    • DotSeries

      public DotSeries(String title, String dataColumn)
      Creates a dot chart that can be displayed on the series object.
      Parameters:
      title - Series title (required)
      dataColumn - The name of the data column that contains the displayed series in the DataDescriptor
      Throws:
      NullPointerException - Thrown if the specified axis name is null
  • Method Details

    • fromSeries

      public static DotSeries fromSeries(Series series)
      Creates a dot series object based on an other Series object.
      Parameters:
      series - The series object All of the specified series object’s settings are taken over by the dot series. If the specified series does not have the attributes necessary for the dot series, the dot series is created using default values.
      Returns:
      The created dot series object