scale.labels.backgroundString
The background 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: {
background: "#ffffe0"
}
}
});
</script>
In this article