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 geoheatmap
series
type, points can be given in the following ways:
lon,lat,value
. The value
refers to the color on the colorAxis
. data: [
[51.50, -0.12, 7],
[54.59, -5.93, 4],
[55.8, -4.25, 3]
]
data: [{
lat: 51.50,
lon: -0.12,
value: 7,
name: "London"
}, {
lat: 54.59,
lon: -5.93,
value: 4,
name: "Belfast"
}]