scale.labels.fontString(default: "12px Arial,Helvetica,sans-serif")
The font style of the labels.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 35
}],
scale: {
labels: {
font: "16px 'Arial Black'"
}
}
});
</script>
In this article