Class ChartSeries

Object
ChartSeries

public class ChartSeries extends Object
Namespace holding the three intermediate tiers that select which of AbstractChartSeries' optional methods a concrete series type re-exposes as public: ChartSeries.Basic (the methods common to nearly every series), ChartSeries.EmbeddedBoxplot (adds an embedded boxplot overlay, extends Basic), and ChartSeries.Aggregation (adds aggregation-by/band-by grouping, also extends Basic). Not instantiated; a concrete series type extends whichever tier matches the options it supports, for example ScatterChart.ScatterSeries extends Aggregation and BarLineChart.BarLineSeries extends EmbeddedBoxplot. Not every chart type extends one of these tiers at all: BoxplotChart.BoxplotSeries extends AbstractChartSeries directly.
See Also: