Class ChartOptions

Object
ChartOptions

public class ChartOptions extends Object
Namespace holding the five intermediate tiers that select which of AbstractChartOptions' optional methods a concrete chart type's Options class re-exposes as public: ChartOptions.Basic (title, subtitle, legend, tooltips), ChartOptions.XYLabels (adds X/Y axis labels, extends Basic), ChartOptions.XYMinMax (adds X/Y numeric bounds, extends XYLabels), ChartOptions.ZAxis (adds Y bounds, a Z axis, and period comparison, extends XYLabels independently of XYMinMax), and ChartOptions.EmbeddedBoxplot (adds embedded boxplot axis bounds, extends ZAxis). Not instantiated; a concrete Options type extends whichever tier matches the settings it supports, for example ScatterChart.ScatterOptions extends XYMinMax and BarLineChart.BarLineOptions extends EmbeddedBoxplot.
See Also: