scale.rangePlaceholderColorString
The default color for the ranges.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 70
}],
scale: {
rangePlaceholderColor: "#cccccc",
ranges: [{
from: 0,
to: 50,
color: "blue"
}]
}
});
</script>
In this article