shapes.connectors.stroke.widthNumber(default: 1)
Defines the thickness or width of the shape connectors stroke.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: { text: "Thick Connector Borders" },
x: 100,
y: 20,
connectors: [{
name: "auto",
stroke: {
width: 4,
color: "#9900cc"
}
}]
}]
});
</script>