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.
Modifier and Type | Field and Description |
---|---|
static PlotOptions |
NULL |
Constructor and Description |
---|
PlotOptions() |
Modifier and Type | Method and Description |
---|---|
Pie |
getPie()
A pie chart is a circular graphic which is divided into slices to illustrate numerical proportion.
|
Series |
getSeries()
General options for all series types.
|
PlotOptions |
setPie(Pie pie)
A pie chart is a circular graphic which is divided into slices to illustrate numerical proportion.
|
PlotOptions |
setSeries(Series series)
General options for all series types.
|
set_hcNulledOption
public static final PlotOptions NULL
public Pie getPie()
A pie chart is a circular graphic which is divided into slices to illustrate numerical proportion.
In TypeScript the type option must always be set.
Configuration options for the series are given in three levels:
pie
series are defined in plotOptions.pie.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, pie: { // shared options for all pie series } }, series: [{ // specific options for this series instance type: 'pie' }] });
public PlotOptions setPie(Pie pie)
A pie chart is a circular graphic which is divided into slices to illustrate numerical proportion.
In TypeScript the type option must always be set.
Configuration options for the series are given in three levels:
pie
series are defined in plotOptions.pie.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, pie: { // shared options for all pie series } }, series: [{ // specific options for this series instance type: 'pie' }] });
pie
- the value for the pie optionpublic Series getSeries()
General options for all series types.
In TypeScript the type option must always be set.
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.
In TypeScript the type option must always be set.
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.