connectorDefaults.heightNumber(default: 8)
Defines the height of the shape connectors.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: {
text: "Tall Connectors"
},
connectorDefaults: {
height: 12
}
}]
});
</script>