connections.accessibility.ariaRoleDescriptionString(default: "Connection")

The accessibility role description of the connection.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Start" } },
        { id: "2", x: 300, y: 100, content: { text: "End" } }
    ],
    connections: [
        {
            from: "1",
            to: "2",
            accessibility: {
                ariaRoleDescription: "Process Flow"
            }
        }
    ]
});
</script>