HighchartsAnnotationsLabelOptions constructor

HighchartsAnnotationsLabelOptions({
  1. HighchartsAnnotationsLabelAccessibilityOptions? accessibility,
  2. String? align,
  3. bool? allowOverlap,
  4. String? backgroundColor,
  5. String? borderColor,
  6. double? borderRadius,
  7. double? borderWidth,
  8. String? className,
  9. bool? crop,
  10. double? distance,
  11. String? format,
  12. String? formatter,
  13. bool? includeInDataExport,
  14. String? overflow,
  15. double? padding,
  16. Map<String, dynamic>? shadow,
  17. String? shape,
  18. Map<String, String>? style,
  19. String? text,
  20. bool? useHTML,
  21. String? verticalAlign,
  22. double? x,
  23. double? y,
})

Options for annotation's labels. Each label inherits options from the labelOptions object. An option from the labelOptions can be overwritten by config for a specific label.

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

Implementation

HighchartsAnnotationsLabelOptions(
    {this.accessibility,
    this.align,
    this.allowOverlap,
    this.backgroundColor,
    this.borderColor,
    this.borderRadius,
    this.borderWidth,
    this.className,
    this.crop,
    this.distance,
    this.format,
    this.formatter,
    this.includeInDataExport,
    this.overflow,
    this.padding,
    this.shadow,
    this.shape,
    this.style,
    this.text,
    this.useHTML,
    this.verticalAlign,
    this.x,
    this.y});