scale.labels.format String

The format of the labels.

Example

<div id="linear-gauge"></div>
<script>
$("#linear-gauge").kendoLinearGauge({
    scale: {
        labels: {
            // set the format to currency
            format: "C"
        }
    }
});
</script>
In this article