data property
An array of data points for the series. For the pointandfigure
series
type, points can be given in the following way:
- An array of arrays with 2 values. In this case, the values correspond
to
x, y
. Y values are parsed under the hood to create point and figure format data points. - An array of objects with named values
{x, y}
.
API Docs: https://api.highcharts.com/highstock/series.pointandfigure.data
Implementation
List<List<dynamic>>? data;