majorTickStyle property
The style to use for the major axis tick lines.
Using MajorTickStyle to add the customized style to the axis major tick line.
Defaults to the MajorTickStyle property with length 10 logical pixels
.
Also refer MajorTickStyle
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis(
majorTickStyle: MajorTickStyle(color: Colors.red,
thickness: 3,
length: 10),
)]
));
}
Implementation
final MajorTickStyle majorTickStyle;