shapes.stroke.lineCapString
Defines the line cap style of the stroke. Supported values are "butt", "round", and "square".
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
stroke: {
lineCap: "round",
width: 4
}
}]
});
</script>
In this article