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

Scale.majorTicks

configuration

Configures the scale major ticks.

<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
    value: 65,
    scale: {
        majorTicks: {
            color: "#0058e9",
            size: 10,
            width: 2,
            visible: true
        }
    }
});
</script>

The color of the major ticks.

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

The major 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: {
        majorTicks: {
            size: 15,
            visible: true
        }
    }
});
</script>

The visibility of the major ticks.

Default: false

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

The width of the major ticks.

Default: 0.5

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