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: 0

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 65
    }],
    scale: {
        labels: {
            margin: {
                top: 10,
                bottom: 5,
                left: 8,
                right: 8
            }
        }
    }
});
</script>

The bottom margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 85
    }],
    scale: {
        labels: {
            margin: {
                bottom: 12
            }
        }
    }
});
</script>

The left margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 25
    }],
    scale: {
        labels: {
            margin: {
                left: 20
            }
        }
    }
});
</script>

The right margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 70
    }],
    scale: {
        labels: {
            margin: {
                right: 18
            }
        }
    }
});
</script>

The top margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 40
    }],
    scale: {
        labels: {
            margin: {
                top: 15
            }
        }
    }
});
</script>