centerY property

double centerY
final

Top location of center axis.

The centerY value must be between 0 to 1. Change the top position of the axis inside the boundary of the widget.

Defaults to 0.5

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

Implementation

final double centerY;