HighchartsNavigationButtonThemeOptions constructor

HighchartsNavigationButtonThemeOptions({
  1. String? fill,
  2. double? padding,
  3. HighchartsNavigationButtonThemeStatesOptions? states,
  4. String? stroke,
  5. String? strokeLinecap,
  6. Map<String, String>? style,
})

A configuration object for the button theme. The object accepts SVG properties like stroke-width, stroke and fill. Tri-state button styles are supported by the states.hover and states.select objects.

API Docs: https://api.highcharts.com/highcharts/navigation.buttonOptions.theme

Implementation

HighchartsNavigationButtonThemeOptions(
    {this.fill,
    this.padding,
    this.states,
    this.stroke,
    this.strokeLinecap,
    this.style});