Format label for pie chart syncfusion charts

Custom Code

Hello, could you please help me format the label settings of the pie chart to display currency format with no decimals:

class _PieChartState extends State<PieChart> {
  @override
  Widget build(BuildContext context) {
    return Container(
        child: SfCircularChart(
            legend: Legend(
              isVisible: true,
              position: LegendPosition.bottom,
            ),
            series: <CircularSeries<PieChartDataStruct, String>>[
          // Render pie chart
          PieSeries<PieChartDataStruct, String>(
              dataSource: widget.piechartData,
              dataLabelSettings: DataLabelSettings(
                isVisible: true,
              ),
              animationDuration: 0,
              //pointColorMapper: (PieChartDataStruct data, _) => data.color,
              xValueMapper: (PieChartDataStruct data, _) => data.xTitle,
              yValueMapper: (PieChartDataStruct data, _) => data.yValue)
        ]));
What have you tried so far?

I have tried using

numberFormat: NumberFormat.compactSimpleCurrency()

but it only works in SfCartesianChart (column chart) and is for the axis. I haven't found any documentation for label number formats for pieCharts.

Did you check FlutterFlow's Documentation for this topic?
Yes