New to Kendo UI for jQuery? Download free 30-day trial

Scale Options

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.

$("#radial-gauge").kendoRadialGauge({
    scale: {
        startAngle: 90,
        endAngle: 180
    }
});

See Also

In this article