scale.labels.borderObject

The border of the labels.

Example

<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
    value: 50,
    scale: {
        labels: {
            border: {
                color: "#0058e9",
                width: 1
            }
        }
    }
});
</script>