connections.accessibility.ariaLabelString
The accessibility label of the connection.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [
{ id: "1", x: 100, y: 100, content: { text: "CEO" } },
{ id: "2", x: 300, y: 100, content: { text: "VP" } }
],
connections: [
{
from: "1",
to: "2",
accessibility: {
ariaLabel: "CEO oversees VP"
}
}
]
});
</script>