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.
An array of data points for the series. For the contour series
type, points can be given in the following ways:
x,y,value. If the first value is a string, it is
applied as the name of the point, and the x value is inferred.
Unlike the heatmap, the contour series data points, do not have to appear
in any specific order. data: [
[0, 9, 7],
[1, 10, 4],
[2, 6, 3]
]
data: [{
x: 1,
y: 3,
value: 10,
name: "Point2"
}, {
x: 1,
y: 7,
value: 10,
name: "Point1"
}]