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").kendoRadialGauge({
pointer: [{
value: 55
}],
scale: {
labels: {
background: "#ffffcc"
}
}
});
</script>
In this article