numberFormat property

NumberFormat? numberFormat
final

Formats the axis labels with globalized label formats.

Defaults to null.

Also refer NumberFormat.

Widget build(BuildContext context) {
   return Container(
       child: SfRadialGauge(
         axes:<RadialAxis>[RadialAxis(
          numberFormat: NumberFormat.currencyCompact()
           )]
       ));
}

Implementation

final NumberFormat? numberFormat;