scale.labels.colorString
The text color of the labels. Any valid CSS color string will work here, including hex and rgb.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
scale: {
labels: {
color: "#37b400"
}
}
});
</script>
In this article