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