scale.minorTicks.sizeNumber
The minor tick size. This is the length of the line in pixels that is drawn to indicate the tick on the scale.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
scale: {
minorTicks: {
size: 8,
visible: true
}
}
});
</script>
In this article