colors.colorString
The color of the pointer in the specified range.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
value: 30,
colors: [{
to: 50,
color: '#0058e9'
}, {
from: 50,
color: '#37b400'
}]
});
</script>
In this article