minorTickColor property
Specifies the minor tick line color
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: SfTheme(
data: SfThemeData(
gaugeThemeData: SfGaugeThemeData(
minorTickColor: Colors.red[400]
)
),
child: SfRadialGauge(),
),
)
);
}
Implementation
final Color? minorTickColor;