New to Kendo UI for jQueryStart a free 30-day trial

Scale.minorTicks

configuration

Configures the scale minor ticks.

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 55
    }],
    scale: {
        minorTicks: {
            color: "#0066cc",
            size: 5,
            width: 1,
            visible: true
        }
    }
});
</script>

The color of the minor ticks. Any valid CSS color string will work here, including hex and rgb.

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 80
    }],
    scale: {
        minorTicks: {
            color: "#666666"
        }
    }
});
</script>

The minor tick size. This is the length of the line in pixels that is drawn to indicate the tick on the scale.

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 25
    }],
    scale: {
        minorTicks: {
            size: 8
        }
    }
});
</script>

The visibility of the minor ticks.

Default: true

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 95
    }],
    scale: {
        minorTicks: {
            visible: false
        }
    }
});
</script>

The width of the minor ticks.

Default: 0.5

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 45
    }],
    scale: {
        minorTicks: {
            width: 2
        }
    }
});
</script>