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").kendoCircularGauge({
    value: 50,
    scale: {
        labels: {
            margin: 10
        }
    }
});
</script>

The bottom margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
    value: 50,
    scale: {
        labels: {
            margin: {
                top: 5,
                bottom: 12,
                left: 5,
                right: 5
            }
        }
    }
});
</script>

The left margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
    value: 50,
    scale: {
        labels: {
            margin: {
                top: 5,
                bottom: 5,
                left: 10,
                right: 5
            }
        }
    }
});
</script>

The right margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
    value: 50,
    scale: {
        labels: {
            margin: {
                top: 5,
                bottom: 5,
                left: 5,
                right: 8
            }
        }
    }
});
</script>

The top margin of the labels.

<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
    value: 50,
    scale: {
        labels: {
            margin: {
                top: 15,
                bottom: 5,
                left: 5,
                right: 5
            }
        }
    }
});
</script>