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").kendoLinearGauge({
    pointer: {
        value: 30
    },
    scale: {
        min: 0,
        max: 50,
        minorTicks: {
            color: "#9e9e9e",
            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").kendoLinearGauge({
    pointer: {
        value: 30
    },
    scale: {
        min: 0,
        max: 50,
        minorTicks: {
            color: "#607d8b"
        }
    }
});
</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").kendoLinearGauge({
    pointer: {
        value: 30
    },
    scale: {
        min: 0,
        max: 50,
        minorTicks: {
            size: 3,
            color: "#795548"
        }
    }
});
</script>

The visibility of the minor ticks.

Default: true

<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
    pointer: {
        value: 30
    },
    scale: {
        min: 0,
        max: 50,
        minorTicks: {
            visible: false
        }
    }
});
</script>

The width of the minor ticks.

Default: 0.5

<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
    pointer: {
        value: 30
    },
    scale: {
        min: 0,
        max: 50,
        minorTicks: {
            width: 2,
            color: "#ffc107"
        }
    }
});
</script>