HighchartsConnectorsOptions constructor

HighchartsConnectorsOptions({
  1. double? algorithmMargin,
  2. String? dashStyle,
  3. bool? enabled,
  4. HighchartsConnectorsEndMarkerOptions? endMarker,
  5. String? lineColor,
  6. double? lineWidth,
  7. HighchartsConnectorsMarkerOptions? marker,
  8. double? radius,
  9. HighchartsConnectorsStartMarkerOptions? startMarker,
  10. String? type,
})

The Pathfinder module allows you to define connections between any two points, represented as lines - optionally with markers for the start and/or end points. Multiple algorithms are available for calculating how the connecting lines are drawn.

API Docs: https://api.highcharts.com/gantt/connectors

Implementation

HighchartsConnectorsOptions(
    {this.algorithmMargin,
    this.dashStyle,
    this.enabled,
    this.endMarker,
    this.lineColor,
    this.lineWidth,
    this.marker,
    this.radius,
    this.startMarker,
    this.type});