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").kendoCircularGauge({
value: 50,
gaugeArea: {
background: "#e8f4f8"
}
});
</script>
In this article