connections.accessibilityObject

Defines accessibility options for the connection.

Example - configuring accessibility for a specific connection

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Manager" } },
        { id: "2", x: 300, y: 100, content: { text: "Employee" } }
    ],
    connections: [
        {
            from: "1",
            to: "2",
            accessibility: {
                ariaLabel: "Reports to relationship"
            }
        }
    ]
});
</script>