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

Scale Options

The ArcGauge enables you to customize the options of the scale.

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 ArcGauge.

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

See Also

In this article