HighchartsAnnotationsOptions constructor

HighchartsAnnotationsOptions({
  1. HighchartsAnnotationsAnimationOptions? animation,
  2. HighchartsAnnotationsControlPointOptions? controlPointOptions,
  3. bool? crop,
  4. String? draggable,
  5. HighchartsAnnotationsEventsOptions? events,
  6. dynamic id,
  7. HighchartsAnnotationsLabelOptions? labelOptions,
  8. List<HighchartsAnnotationsLabelsOptions>? labels,
  9. HighchartsAnnotationsShapeOptions? shapeOptions,
  10. List<HighchartsAnnotationsShapesOptions>? shapes,
  11. String? type,
  12. HighchartsAnnotationsTypesOptions? types,
  13. bool? visible,
  14. double? zIndex,
})

A collection of annotations to add to the chart. The basic annotation allows adding custom labels or shapes. The items can be tied to points, axis coordinates or chart pixel coordinates.

API Docs: https://api.highcharts.com/highcharts/annotations

Implementation

HighchartsAnnotationsOptions(
    {this.animation,
    this.controlPointOptions,
    this.crop,
    this.draggable,
    this.events,
    this.id,
    this.labelOptions,
    this.labels,
    this.shapeOptions,
    this.shapes,
    this.type,
    this.types,
    this.visible,
    this.zIndex});