HighchartsAnnotationsShapeOptions constructor

HighchartsAnnotationsShapeOptions({
  1. String? dashStyle,
  2. Map<String, dynamic>? fill,
  3. double? height,
  4. double? r,
  5. double? ry,
  6. double? snap,
  7. String? src,
  8. String? stroke,
  9. double? strokeWidth,
  10. String? type,
  11. double? width,
  12. double? xAxis,
  13. double? yAxis,
})

Options for annotation's shapes. Each shape inherits options from the shapeOptions object. An option from the shapeOptions can be overwritten by config for a specific shape.

API Docs: https://api.highcharts.com/highcharts/navigation.annotationsOptions.shapeOptions

Implementation

HighchartsAnnotationsShapeOptions(
    {this.dashStyle,
    this.fill,
    this.height,
    this.r,
    this.ry,
    this.snap,
    this.src,
    this.stroke,
    this.strokeWidth,
    this.type,
    this.width,
    this.xAxis,
    this.yAxis});