HighchartsSeriesMarkerOptions constructor

HighchartsSeriesMarkerOptions({
  1. bool? enabled,
  2. double? enabledThreshold,
  3. String? fillColor,
  4. double? height,
  5. String? lineColor,
  6. double? lineWidth,
  7. double? radius,
  8. HighchartsSeriesMarkerStatesOptions? states,
  9. String? symbol,
  10. double? width,
})

Options for the point markers of line and scatter-like series. Properties like fillColor, lineColor and lineWidth define the visual appearance of the markers. The symbol option defines the shape. Other series types, like column series, don't have markers, but have visual options on the series level instead.

API Docs: https://api.highcharts.com/highcharts/series.zigzag.marker

Implementation

HighchartsSeriesMarkerOptions(
    {this.enabled,
    this.enabledThreshold,
    this.fillColor,
    this.height,
    this.lineColor,
    this.lineWidth,
    this.radius,
    this.states,
    this.symbol,
    this.width});