scale.majorTicks.widthNumber(default: 0.5)
The width of the major ticks.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
value: 50,
scale: {
majorTicks: {
width: 2
}
}
});
</script>
In this article