Hi,
I am using a RadialGauge and want to position the scale labe on the outside. The Gauge is created with HTML helper as follows:
The result is, that the scale is still positioned inside the scale. Is there anything wrong in my code?
I am using v.2013.2.716.340.
Regards
Sven
I am using a RadialGauge and want to position the scale labe on the outside. The Gauge is created with HTML helper as follows:
@(Html.Kendo().RadialGauge() .Name("gauge1") .Pointer(pointer => pointer .Color("#8EBC00") .Value(@ViewBag.ServiceLevel)) .Scale(scale => scale .MinorUnit(5) .StartAngle(0) .EndAngle(180) .Max(100) .Labels(labels => labels .Position(GaugeRadialScaleLabelsPosition.Outside)) .Ranges(ranges => { ranges.Add().From(0).To(5).Color("#c20000"); ranges.Add().From(5).To(25).Color("#ff7a00"); ranges.Add().From(25).To(60).Color("#ffc700"); }) ))I am using v.2013.2.716.340.
Regards
Sven