connectorDefaults.widthNumber(default: 8)
Defines the width of the shape connectors.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: {
text: "Wide Connectors"
},
connectorDefaults: {
width: 15
}
}]
});
</script>
In this article