gaugeArea.border.colorString(default: "black")
The color of the border. Any valid CSS color string will work here, including hex and rgb.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
gaugeArea: {
border: {
color: "#ff6800",
width: 2
}
}
});
</script>