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