shapes.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 Default Connectors" },
x: 100,
y: 20,
connectorDefaults: {
height: 16
}
}]
});
</script>
In this article