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 carteseian series with higher and lower values for each point along an X axis, where the area between the values is shaded.
In TypeScript the type option must always be set.
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'
}]
});