HighchartsMapSeriesDataOptions constructor

HighchartsMapSeriesDataOptions({
  1. String? color,
  2. dynamic dataLabels,
  3. String? drilldown,
  4. HighchartsMapSeriesDataEventsOptions? events,
  5. HighchartsMapSeriesDataGeometryOptions? geometry,
  6. String? id,
  7. double? labelrank,
  8. double? middleX,
  9. double? middleY,
  10. String? name,
  11. String? path,
  12. double? value,
})

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

API Docs: https://api.highcharts.com/highmaps/series.map.data

Implementation

HighchartsMapSeriesDataOptions(
    {this.color,
    this.dataLabels,
    this.drilldown,
    this.events,
    this.geometry,
    this.id,
    this.labelrank,
    this.middleX,
    this.middleY,
    this.name,
    this.path,
    this.value});