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 heatmap
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.
The x
value can also be omitted, in which case the inner arrays
should be of length 2. Then the x
value is automatically calculated,
either starting at 0 and incremented by 1, or from pointStart
and pointInterval
given in the series options. data: [
[0, 9, 7],
[1, 10, 4],
[2, 6, 3]
]
data: [{
x: 1,
y: 3,
value: 10,
name: "Point2",
color: "#00FF00"
}, {
x: 1,
y: 7,
value: 10,
name: "Point1",
color: "#FF00FF"
}]