scale.rangeLineCapString
(default: "round")
The lineCap style of the ranges.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoArcGauge({
value: 65,
scale: {
rangeLineCap: "butt"
}
});
</script>
The supported values are:
"butt"
"round"
"square"
In this article