shapes.connectors.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" },
x: 100,
y: 20,
connectors: [{
name: "left",
height: 20
}, {
name: "right",
height: 20
}]
}]
});
</script>
In this article