radiusFactor property

double radiusFactor
final

The size of the axis, expressed as the radius (half the diameter) in factor.

The radiusFactor must be between 0 and 1. Axis radius is determined by multiplying this factor value to the minimum width or height of the widget.

Defaults to 0.95

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

Implementation

final double radiusFactor;