HighchartsMapPointSeriesDataOptions constructor

HighchartsMapPointSeriesDataOptions({
  1. String? color,
  2. dynamic dataLabels,
  3. String? drilldown,
  4. HighchartsMapPointSeriesDataEventsOptions? events,
  5. HighchartsMapPointSeriesDataGeometryOptions? geometry,
  6. String? id,
  7. double? lat,
  8. double? lon,
  9. String? name,
  10. double? x,
  11. double? y,
})

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

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

Implementation

HighchartsMapPointSeriesDataOptions(
    {this.color,
    this.dataLabels,
    this.drilldown,
    this.events,
    this.geometry,
    this.id,
    this.lat,
    this.lon,
    this.name,
    this.x,
    this.y});