gaugeArea.borderObject

The border of the gauge area.

Example

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