For initial declarative chart setup. View as 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.
A bell curve is an areaspline series which represents the probability density function of the normal distribution. It calculates mean and standard deviation of the base series data and plots the curve according to the calculated parameters.
In TypeScript the type option must always be set.
Configuration options for the series are given in three levels:
bellcurve
series are defined in
plotOptions.bellcurve.Highcharts.chart('container', {
plotOptions: {
series: {
// general options for all series
},
bellcurve: {
// shared options for all bellcurve series
}
},
series: [{
// specific options for this series instance
type: 'bellcurve'
}]
});