This question is locked. New answers and comments are not allowed.
i have a simple gauge like below code.
it has Radial scale Max =100 and Min =0 MajorTickStep =10
I dont want the labels of MajorTickStep Instead of that
just i need to show only labels for every range.
example
Need to show the Labels where 0, 20 ,50 and 100
is that possible ???
it has Radial scale Max =100 and Min =0 MajorTickStep =10
I dont want the labels of MajorTickStep Instead of that
just i need to show only labels for every range.
example
Need to show the Labels where 0, 20 ,50 and 100
is that possible ???
<telerik:RadialScale Name="radialScale"> <telerik:RangeList> <telerik:RadialRange Name="Green" Min="0" Max="20" StartWidth="0.02" EndWidth="0.1" Location="Inside" Background="CadetBlue" BorderBrush="CadetBlue"/> <telerik:RadialRange Name="Red" Min="20" Max="50" StartWidth="0.02" EndWidth="0.1" Location="Inside" Background="CadetBlue" BorderBrush="CadetBlue"/><telerik:RadialRange Name="Red" Min="50" Max="100" StartWidth="0.02" EndWidth="0.1" Location="Inside" Background="CadetBlue" BorderBrush="CadetBlue"/> </telerik:RangeList></telerik:RadialScale>