How can I set the height of a RadialGauge using the server-side wrapper if it's not exposed?
@(
Html.Kendo().RadialGauge()
.Name(
"patientDocumentMatchThresholdGauge"
)
.Pointer(pointer => pointer.Value((
double
)Model.PatientDocumentMatchThreshold * 100))
.Scale(scale => scale
.EndAngle(180)
.MajorUnit(10)
.Max(100)
.Min(0)
.MinorUnit(1)
.StartAngle(0)
.Ranges(ranges => {
ranges.Add().From(0).To(90).Color(
"#f00"
);
ranges.Add().From(90).To(95).Color(
"#ffa500"
);
ranges.Add().From(95).To(100).Color(
"#0c0"
);
}
)
)
)