scale.labels.format String
The format of the labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
renderAs: "canvas",
pointer: {
value: 50
},
scale: {
min: 0,
max: 100,
labels: {
// set the format to currency
format: "C"
}
}
});
</script>