data property

List<List>? data
getter/setter pair

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

  1. 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.
  2. An array of objects with named values {x, y}.

API Docs: https://api.highcharts.com/highstock/series.pointandfigure.data

Implementation

List<List<dynamic>>? data;