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 scatter plot uses cartesian coordinates to display values for two variables for a set of data.
In TypeScript the type option must always be set.
Configuration options for the series are given in three levels:
scatter
series are defined in
plotOptions.scatter.Highcharts.chart('container', {
plotOptions: {
series: {
// general options for all series
},
scatter: {
// shared options for all scatter series
}
},
series: [{
// specific options for this series instance
type: 'scatter'
}]
});