canRotateLabels property

bool canRotateLabels
final

whether to rotate the labels based on angle.

Defaults to false

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

Implementation

final bool canRotateLabels;