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