data property
An array of data points for the series. For the columnpyramid
series type,
points can be given in the following ways:
-
An array of numerical values. In this case, the numerical values will be interpreted as
y
options. Thex
values will be automatically calculated, either starting at 0 and incremented by 1, or frompointStart
andpointInterval
given in the series options. If the axis has categories, these will be used. Example: -
An array of arrays with 2 values. In this case, the values correspond to
x,y
. If the first value is a string, it is applied as the name of the point, and thex
value is inferred. -
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.
API Docs: https://api.highcharts.com/highcharts/series.columnpyramid.data
Implementation
List<List<dynamic>>? data;