Maybe I am just formatting it incorrectly, but is there a way to show currency in an Arc Gauge Value? Right now it seems to only except integer values. I can set the format string to currency, but it since I can't seem to use anything but an integer value, it does not show any cents. Example. Value is $18,192.63. I have to convert it to an int to be excepted, then the format string makes the value display as $18,192.00.
This should work:
<RadzenArcGauge Style="width: 100%; height: 250px;">
<RadzenArcGaugeScale Step="20" Min="0" Max="260" MinorStep="2" Radius="1.5" Margin="0">
<RadzenArcGaugeScaleValue Value=@value FormatString="{0:C}" />
</RadzenArcGaugeScale>
</RadzenArcGauge>
@code {
double value = 99.99;
}
Lol, tried everything except double! Thanks for the clarification, you guys are awesome!