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").kendoArcGauge({
    value: 65,
    scale: {
        minorTicks: {
            color: "#999",
            size: 5,
            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").kendoArcGauge({
    value: 65,
    scale: {
        minorTicks: {
            color: "#ffc000",
            visible: true
        }
    }
});
</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").kendoArcGauge({
    value: 65,
    scale: {
        minorTicks: {
            size: 8,
            visible: true
        }
    }
});
</script>

The visibility of the minor ticks.

Default: false

<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
    value: 65,
    scale: {
        minorTicks: {
            visible: true
        }
    }
});
</script>

The width of the minor ticks.

Default: 0.5

<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
    value: 65,
    scale: {
        minorTicks: {
            width: 2,
            visible: true
        }
    }
});
</script>