SfGaugeThemeData constructor

const SfGaugeThemeData({
  1. Color backgroundColor = Colors.transparent,
  2. Color? titleColor,
  3. Color? axisLabelColor,
  4. Color? axisLineColor,
  5. Color? majorTickColor,
  6. Color? minorTickColor,
  7. Color? markerColor,
  8. Color markerBorderColor = Colors.transparent,
  9. Color? needleColor,
  10. Color? knobColor,
  11. Color knobBorderColor = Colors.transparent,
  12. Color? tailColor,
  13. Color tailBorderColor = Colors.transparent,
  14. Color? rangePointerColor,
  15. Color? rangeColor,
  16. Color titleBorderColor = Colors.transparent,
  17. Color titleBackgroundColor = Colors.transparent,
  18. TextStyle? titleTextStyle,
  19. TextStyle? axisLabelTextStyle,
  20. TextStyle? markerTextStyle,
})

Initialize the gauge theme data

Implementation

const SfGaugeThemeData({
  this.backgroundColor = Colors.transparent,
  this.titleColor,
  this.axisLabelColor,
  this.axisLineColor,
  this.majorTickColor,
  this.minorTickColor,
  this.markerColor,
  this.markerBorderColor = Colors.transparent,
  this.needleColor,
  this.knobColor,
  this.knobBorderColor = Colors.transparent,
  this.tailColor,
  this.tailBorderColor = Colors.transparent,
  this.rangePointerColor,
  this.rangeColor,
  this.titleBorderColor = Colors.transparent,
  this.titleBackgroundColor = Colors.transparent,
  this.titleTextStyle,
  this.axisLabelTextStyle,
  this.markerTextStyle,
});