scale.labels.template String|Function
The label template. Template variables:
- value - the value
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
renderAs: "canvas",
pointer: {
value: 50
},
scale: {
min: 0,
max: 100,
labels: {
// set the format to currency
template: "#= value #%"
}
}
});
</script>