HighchartsCandlestickSeriesDataOptions constructor

HighchartsCandlestickSeriesDataOptions({
  1. HighchartsCandlestickSeriesDataAccessibilityOptions? accessibility,
  2. double? close,
  3. String? color,
  4. Map<String, dynamic>? custom,
  5. HighchartsCandlestickSeriesDataDataLabelsOptions? dataLabels,
  6. String? description,
  7. HighchartsCandlestickSeriesDataDragDropOptions? dragDrop,
  8. HighchartsCandlestickSeriesDataEventsOptions? events,
  9. double? high,
  10. String? id,
  11. double? labelrank,
  12. double? low,
  13. String? name,
  14. double? open,
  15. bool? selected,
  16. dynamic x,
})

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

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

Implementation

HighchartsCandlestickSeriesDataOptions(
    {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.open,
    this.selected,
    this.x});