isInversed property

bool isInversed
final

Inverts the axis from right to left.

Axis is rendered by default in the clockwise direction and can be inverted to render the axis element in the counter clockwise direction.

Defaults to false.

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

Implementation

final bool isInversed;