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