public class Column extends BaseOption
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 }
Copyright (c) 2026 Powerbuilt Systems. All rights reserved.| Constructor and Description |
|---|
Column() |
| Modifier and Type | Method and Description |
|---|---|
String |
getBorderRadius()
The corner radius of the border surrounding each column or bar.
|
Column |
setBorderRadius(String borderRadius)
The corner radius of the border surrounding each column or bar.
|
set_hcNulledOptionpublic static final Column NULL
public String getBorderRadius()
The corner radius of the border surrounding each column or bar. A number signifies pixels. A percentage string, like for example 50%, signifies a relative size. For columns this is relative to the column width, for pies it is relative to the radius and the inner radius.
public Column setBorderRadius(String borderRadius)
The corner radius of the border surrounding each column or bar. A number signifies pixels. A percentage string, like for example 50%, signifies a relative size. For columns this is relative to the column width, for pies it is relative to the radius and the inner radius.
borderRadius - the value for the borderRadius option.Copyright © 2026. All rights reserved.