Welcome to the Highcharts JS (highcharts) Options Reference

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.

series.packedbubble.data

An array of data points for the series. For the packedbubble series type, points can be given in the following ways:

  1. An array of values.
   data: [5, 1, 20]
  1. An array of objects with named values. The objects are point configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.
   data: [{
       value: 1,
       name: "Point2",
       color: "#00FF00"
   }, {
       value: 5,
       name: "Point1",
       color: "#FF00FF"
   }]