HighchartsSubtitleOptions constructor

HighchartsSubtitleOptions({
  1. String? align,
  2. bool? floating,
  3. HighchartsSubtitleStyleOptions? style,
  4. String? text,
  5. bool? useHTML,
  6. String? verticalAlign,
  7. double? x,
  8. double? y,
})

The chart's subtitle. This can be used both to display a subtitle below the main title, and to display random text anywhere in the chart. The subtitle can be updated after chart initialization through the Chart.setTitle method.

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

Implementation

HighchartsSubtitleOptions(
    {this.align,
    this.floating,
    this.style,
    this.text,
    this.useHTML,
    this.verticalAlign,
    this.x,
    this.y});