For initial declarative chart setup. Download as ZIP or JSON.
Highcharts.setOptions({
});
Highcharts.chart({
});
For modifying the chart at runtime. See the class reference.
These pages outline the chart configuration options, and the methods and properties of Highcharts objects.
Feel free to search this API through the search bar or the navigation tree in the sidebar.
The area range series is a cartesian series with higher and lower values for each point along an X axis, where the area between the values is shaded.
Configuration options for the series are given in three levels:
arearange series are defined in
plotOptions.arearange.Highcharts.chart('container', {
plotOptions: {
series: {
// general options for all series
},
arearange: {
// shared options for all arearange series
}
},
series: [{
// specific options for this series instance
type: 'arearange'
}]
});
TypeScript:
type property.if (chart.options.series?.[0]?.type === arearange) {
// code specific to the arearange series
}
Copyright © 2026, Highsoft AS. All rights reserved.
Highcharts Core v12.6.0 - Generated from branch master (commit b0b7d196ce), on Mon Apr 13 2026 09:45:30 GMT+0200 (Central European Summer Time)