canScaleToFit property

bool canScaleToFit
final

Adjust the half or quarter gauge to fit the axis boundary.

if canScaleToFit true, the center and radius position of the axis will be modified on the basis of the angle value.

Defaults to false

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

Implementation

final bool canScaleToFit;