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