colors.colorString
The color of the pointer in the specified range.
Example
<div id="progressbar"></div>
<script>
$("#progressbar").kendoCircularProgressBar({
value: 40,
colors: [{
to: 50,
color: '#e74c3c'
}, {
from: 50,
color: '#2ecc71'
}]
});
</script>
In this article