scale.labels.border.opacityNumber
(default: 1)
The opacity of the border. By default the border is opaque.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
scale: {
labels: {
border: {
color: "#333",
width: 2,
opacity: 0.6
}
}
}
});
</script>
In this article