scale.labelsObject
Configures the scale labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
pointer: {
value: 30
},
scale: {
min: 0,
max: 50,
labels: {
color: "#2196f3",
font: "12px Arial",
visible: true
}
}
});
</script>
In this article