scale.minorTicks.visibleBoolean
(default: true)
The visibility of the minor ticks.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 95
}],
scale: {
minorTicks: {
visible: false
}
}
});
</script>
In this article