Class ChartSeries
Object
ChartSeries
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:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classChartSeries.Aggregation<C extends AbstractChartBuilder<C>,S extends ChartSeries.Basic<C, S>> Re-exposesAbstractChartSeries.setAggregationBy(String),AbstractChartSeries.setBandBy(String), andAbstractChartSeries.setShowBandByLegend(Boolean)aspublic, and addsChartSeries.Aggregation.getBandByOptions(); the tier extended by a concrete series type that supports aggregation-by and band-by grouping, for exampleScatterChart.ScatterSeriesorBubbleChart.BubbleSeries.static classChartSeries.Basic<C extends AbstractChartBuilder<C>,S extends ChartSeries.Basic<C, S>> Re-exposesAbstractChartSeries.setHideDataLabels(Boolean)aspublic; the tier extended by a concrete series type that supports hiding data labels but none ofChartSeries.EmbeddedBoxplot's orChartSeries.Aggregation's further options.static classChartSeries.EmbeddedBoxplot<C extends AbstractChartBuilder<C>,S extends ChartSeries.Basic<C, S>> Re-exposesAbstractChartSeries.setType(SeriesType),AbstractChartSeries.setShowBoxplot(Boolean),AbstractChartSeries.setBoxplotAxis(), andAbstractChartSeries.setWhisker(WhiskerType)aspublic; the tier extended by a concrete series type that supports an embedded box plot overlay, for exampleBarLineChart.BarLineSeriesorTimeSeriesChart.TimeSeriesSeries. -
Method Summary