shapes.connectors.descriptionString
The connector description.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: { text: "Shape with Custom Connectors" },
x: 100,
y: 20,
connectors: [{
name: "top",
description: "Top connection point"
}, {
name: "bottom",
description: "Bottom connection point"
}]
}]
});
</script>
In this article