scale.labels.marginNumber|Object(default: 0)
The margin of the labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 65
}],
scale: {
labels: {
margin: {
top: 10,
bottom: 5,
left: 8,
right: 8
}
}
}
});
</script>
scale.labels.margin.topNumber
The top margin of the labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 40
}],
scale: {
labels: {
margin: {
top: 15
}
}
}
});
</script>
scale.labels.margin.bottomNumber
The bottom margin of the labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 85
}],
scale: {
labels: {
margin: {
bottom: 12
}
}
}
});
</script>
scale.labels.margin.leftNumber
The left margin of the labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 25
}],
scale: {
labels: {
margin: {
left: 20
}
}
}
});
</script>
scale.labels.margin.rightNumber
The right margin of the labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 70
}],
scale: {
labels: {
margin: {
right: 18
}
}
}
});
</script>
In this article