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 wordcloud
series type,
points can be given in the following ways:
An array of arrays with 2 values. In this case, the values correspond to
name,weight
.
data: [
['Lorem', 4],
['Ipsum', 1]
]
An array of objects with named values. The following snippet shows only a few settings, see the complete options set below. If the total number of data points exceeds the series' turboThreshold, this option is not available.
data: [{
name: "Lorem",
weight: 4
}, {
name: "Ipsum",
weight: 1
}]