maximum property

double maximum
final

The maximum value for the axis.

The range of the axis scale is end with this value.

Defaults to 100.

Widget build(BuildContext context) {
   return Container(
       child: SfRadialGauge(
         axes:<RadialAxis>[RadialAxis(
         maximum: 200,
           )]
       ));
}

Implementation

final double maximum;