markerTextStyle property

TextStyle? markerTextStyle
final

Specifies the text style for marker text.

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           gaugeThemeData: SfGaugeThemeData(
             markerTextStyle: TextStyle(color: Colors.red)
           )
         ),
         child: SfRadialGauge(
           title: GaugeTitle(text: 'Title'),
         ),
       ),
     )
  );
}

Implementation

final TextStyle? markerTextStyle;