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