majorTickColor property

Color? majorTickColor
final

Specifies the major tick line color

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           gaugeThemeData: SfGaugeThemeData(
             majorTickColor: Colors.red
           )
         ),
         child: SfRadialGauge(),
       ),
     )
  );
}

Implementation

final Color? majorTickColor;