New to Kendo UI for jQuery? Start a free 30-day trial
Scale Options
Updated over 6 months ago
The RadialGauge enables you to customize the options of the scale.
To set the start and end values of the scale, use the startAngle and endAngle configuration options. For a runnable example, refer to the Car Dashboard demo.
The following example demonstrates how to create a quarter-gauge that is oriented to the top-right.
js
$("#radial-gauge").kendoRadialGauge({
scale: {
startAngle: 90,
endAngle: 180
}
});