scale.labelsObject
Configures the scale labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 25
}],
scale: {
labels: {
color: "#333333",
font: "14px Arial",
visible: true,
position: "outside"
}
}
});
</script>