I am using the following code to format the scale.
<
telerik:RadialScale
Min
=
"0"
Max
=
"55000"
Multiplier
=
".001"
IsInteractive
=
"True"
MajorTickStep
=
"5000"
LabelLocation
=
"OverInside"
FontSize
=
"11"
LabelOffset
=
"-25"
LabelRotationMode
=
"None"
StartAngle
=
"160"
SweepAngle
=
"220"
LabelFormat
=
"{}{0:F0}k"
>
Using a multiplier and a label format, I'm displaying values such as 5K, 10K, etc. instead of 5000, 10000, etc.
However, my first value shows up as '0K', while I would like just '0' (zero) to be shown.
How can I achieve this? Thanks.