[RadzenDonutSeries Chart] Format the displayed value

Is there a possibility to change the appearance (format) of the displayed value (VALOR1 -> 46608818,55) to a monetary value?

Example: the currency is R$ (Brazilian Real) and the value must also be formatted using the dot (.) depending on the number of decimal places displayed.

<RadzenChart>
    <RadzenDonutSeries Data="@IdadeDaConta"
                       CategoryProperty="DS_ATRIBUTO1"
                       ValueProperty="VALOR1"
                       TotalAngle="180"
                       StartAngle="180">

        <ChildContent>
            <RadzenSeriesDataLabels Visible="false" />
        </ChildContent>
    </RadzenDonutSeries>
</RadzenChart>

Yes, there is. Try something like:

<RadzenChart>
    <RadzenValueAxis FormatString="{0:C}" />
    <RadzenDonutSeries Data="@IdadeDaConta"
                       CategoryProperty="DS_ATRIBUTO1"
                       ValueProperty="VALOR1"
                       TotalAngle="180"
                       StartAngle="180">

        <ChildContent>
            <RadzenSeriesDataLabels Visible="false" />
        </ChildContent>
    </RadzenDonutSeries>
</RadzenChart>
1 Like

Thanks, worked perfectly.

Still on this same type of graph, I noticed that the display of the 2nd value is always preceded by the text Series 1.

Is there any way to remove this text?