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

Scale.labels.margin

configuration

The margin of the labels.

scale.labels.margin

Number|Object

Default: 5

js
// sets the top, right, bottom and left margin to 3px.
margin: 3

// sets the top and left margin to 1px
// margin right and bottom are with 5px (by default)
margin: { top: 1, left: 1 }

The bottom margin of the labels.

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

The left margin of the labels.

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

The right margin of the labels.

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

The top margin of the labels.

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