scale.majorTicks.sizeNumber
The major 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").kendoCircularGauge({
value: 50,
scale: {
majorTicks: {
size: 12
}
}
});
</script>
In this article