gaugeArea.backgroundString
(default: "white")
The background of the gauge area. Any valid CSS color string will work here, including hex and rgb.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
gaugeArea: {
background: "#e8f5e8"
}
});
</script>
In this article