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").kendoArcGauge({
value: 65,
scale: {
minorTicks: {
color: "#ffc000",
visible: true
}
}
});
</script>