HighchartsCreditsOptions constructor

HighchartsCreditsOptions({
  1. bool? enabled,
  2. String? href,
  3. String? mapText,
  4. String? mapTextFull,
  5. HighchartsCreditsPositionOptions? position,
  6. HighchartsCreditsStyleOptions? style,
  7. String? text,
})

Highchart by default puts a credits label in the lower right corner of the chart. This can be changed using these options.

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

Implementation

HighchartsCreditsOptions(
    {this.enabled,
    this.href,
    this.mapText,
    this.mapTextFull,
    this.position,
    this.style,
    this.text});