HighchartsFlowMapSeriesDataOptions constructor

HighchartsFlowMapSeriesDataOptions({
  1. double? curveFactor,
  2. String? fillColor,
  3. double? fillOpacity,
  4. Map<String, dynamic>? from,
  5. bool? growTowards,
  6. double? lineWidth,
  7. HighchartsFlowMapSeriesDataMarkerEndOptions? markerEnd,
  8. double? opacity,
  9. Map<String, dynamic>? to,
  10. double? weight,
})

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

API Docs: https://api.highcharts.com/highcharts/series.flowmap.data

Implementation

HighchartsFlowMapSeriesDataOptions(
    {this.curveFactor,
    this.fillColor,
    this.fillOpacity,
    this.from,
    this.growTowards,
    this.lineWidth,
    this.markerEnd,
    this.opacity,
    this.to,
    this.weight});