endValue property Null safety
final
Specifies the range end value.
The range is drawn from startValue to endValue.
The endValue must be less than the maximum value of the axis.
Defaults to null
.
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis(
ranges: <GaugeRange>[GaugeRange(startValue: 50,
endValue: 100)],
)]
));
}
Implementation
final double endValue;