scale.minorTicks.colorString
The color of the minor ticks. Any valid CSS color string will work here, including hex and rgb.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
value: 50,
scale: {
minorTicks: {
color: "#ff6358"
}
}
});
</script>
In this article