public class PlotOptions extends BaseOption
The plotOptions is a wrapper object for config objects for each series type. The config objects for each series can also be overridden for each series item as given in the series array.
Configuration options for the series are given in three levels. Options for all series in a chart are given in the plotOptions.series object. Then options for all series of a specific type are given in the plotOptions of that type, for example plotOptions.line
. Next, options for one single series are given in the series array.
Constructor and Description |
---|
PlotOptions() |
Modifier and Type | Method and Description |
---|---|
Series |
getSeries()
General options for all series types.
|
Series |
series()
General options for all series types.
|
PlotOptions |
series(Series series)
General options for all series types.
|
PlotOptions |
setSeries(Series series)
General options for all series types.
|
set_hcNulledOption
public Series series()
General options for all series types.
Configuration options for the series are given in three levels:
line
series are defined in plotOptions.line.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, line: { // shared options for all line series } }, series: [{ // specific options for this series instance type: 'line' }] });
public PlotOptions series(Series series)
General options for all series types.
Configuration options for the series are given in three levels:
line
series are defined in plotOptions.line.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, line: { // shared options for all line series } }, series: [{ // specific options for this series instance type: 'line' }] });
series
- the value for the series optionpublic Series getSeries()
General options for all series types.
Configuration options for the series are given in three levels:
line
series are defined in plotOptions.line.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, line: { // shared options for all line series } }, series: [{ // specific options for this series instance type: 'line' }] });
public PlotOptions setSeries(Series series)
General options for all series types.
Configuration options for the series are given in three levels:
line
series are defined in plotOptions.line.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, line: { // shared options for all line series } }, series: [{ // specific options for this series instance type: 'line' }] });
series
- the value for the series optionCopyright © 2022. All rights reserved.