HighchartsHLCSeriesDataOptions constructor

HighchartsHLCSeriesDataOptions({
  1. HighchartsHLCSeriesDataAccessibilityOptions? accessibility,
  2. double? close,
  3. String? color,
  4. Map<String, dynamic>? custom,
  5. HighchartsHLCSeriesDataDataLabelsOptions? dataLabels,
  6. String? description,
  7. HighchartsHLCSeriesDataDragDropOptions? dragDrop,
  8. HighchartsHLCSeriesDataEventsOptions? events,
  9. double? high,
  10. String? id,
  11. double? labelrank,
  12. double? low,
  13. String? name,
  14. bool? selected,
  15. dynamic x,
})

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

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

Implementation

HighchartsHLCSeriesDataOptions(
    {this.accessibility,
    this.close,
    this.color,
    this.custom,
    this.dataLabels,
    this.description,
    this.dragDrop,
    this.events,
    this.high,
    this.id,
    this.labelrank,
    this.low,
    this.name,
    this.selected,
    this.x});