showLabels property

bool showLabels
final

Whether to show the labels on the axis of the gauge.

Defaults to true.

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

Implementation

final bool showLabels;