HighchartsRenkoSeriesDataOptions constructor

HighchartsRenkoSeriesDataOptions({
  1. HighchartsRenkoSeriesDataAccessibilityOptions? accessibility,
  2. String? borderColor,
  3. double? borderWidth,
  4. String? color,
  5. Map<String, dynamic>? custom,
  6. String? dashStyle,
  7. List<HighchartsRenkoSeriesDataDataLabelsOptions>? dataLabels,
  8. String? description,
  9. HighchartsRenkoSeriesDataDragDropOptions? dragDrop,
  10. HighchartsRenkoSeriesDataEventsOptions? events,
  11. String? id,
  12. double? labelrank,
  13. String? name,
  14. double? pointWidth,
  15. bool? selected,
  16. dynamic x,
  17. double? y,
})

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

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

Implementation

HighchartsRenkoSeriesDataOptions(
    {this.accessibility,
    this.borderColor,
    this.borderWidth,
    this.color,
    this.custom,
    this.dashStyle,
    this.dataLabels,
    this.description,
    this.dragDrop,
    this.events,
    this.id,
    this.labelrank,
    this.name,
    this.pointWidth,
    this.selected,
    this.x,
    this.y});