data property
An array of data points for the series. For the renko
series
type, points can be given in the following ways:
-
An array of arrays with 1 or 2 values correspond to
x,close
. If the first value is a string, it is applied as the name of the point, and thex
value is inferred. Thex
value can also be omitted, in which case the inner arrays should be of length 4. Then thex
value is automatically calculated, either starting at 0 and incremented by 1, or frompointStart
andpointInterval
given in the series options. -
An array of objects with named values. With renko series, the data does not directly correspond to the points in the series. the reason is that the points are calculated based on the trends and boxSize. Setting options for individual point is impossible.
API Docs: https://api.highcharts.com/highstock/series.renko.data
Implementation
List<List<dynamic>>? data;