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 |
|---|---|
Column |
getColumn()
Column series display one column per value along an X axis.
|
PlotOptions |
setColumn(Column column)
Column series display one column per value along an X axis.
|
set_hcNulledOptionpublic static final PlotOptions NULL
public Column getColumn()
Column series display one column per value along an X axis.
Configuration options for the series are given in three levels:
column series are defined in plotOptions.column.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, column: { // shared options for all column series } }, series: [{ // specific options for this series instance type: 'column' }] }); TypeScript:
type property.if (chart.options.series?.[0]?.type === column) { // code specific to the column series } public PlotOptions setColumn(Column column)
Column series display one column per value along an X axis.
Configuration options for the series are given in three levels:
column series are defined in plotOptions.column.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, column: { // shared options for all column series } }, series: [{ // specific options for this series instance type: 'column' }] }); TypeScript:
type property.if (chart.options.series?.[0]?.type === column) { // code specific to the column series } column - the value for the column option.Copyright © 2026. All rights reserved.