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

Scale Options

The CircularGauge enables you to customize the appearance of the scale by configuring the component's options.

For example, you can change the start and end angle, the appearance of the label and ticks, customize the ranges, and others. For the full list of options, refer to the API reference of the CircularGauge.

$("#gauge").kendoCircularGauge({
    scale: {
        min: 0,
        max: 100,
        labels: {
            template: "#: value #%",
            position: "outside"
        },
        minorUnit: 10,
        majorUnit: 100
    }
});

See Also

In this article