interval property
The interval value for the axis.
Using this, the axis labels can be shown at a certain interval value. Unless the interval is not defined, interval will be measured automatically based on scale range along with the available width.
Defaults to null
.
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis(
interval: 20,
)]
));
}
Implementation
final double? interval;