New to Kendo UI for jQueryStart a free 30-day trial

Defines accessibility options for the shape.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        {
            id: "1",
            x: 100,
            y: 100,
            content: { text: "CEO" },
            accessibility: {
                ariaLabel: "Chief Executive Officer position"
            }
        },
        {
            id: "2",
            x: 300,
            y: 100,
            content: { text: "CTO" },
            accessibility: {
                ariaLabel: "Chief Technology Officer position"
            }
        }
    ],
    connections: [
        { from: "1", to: "2" }
    ]
});
</script>

The accessibility label of the shape.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        {
            id: "1",
            x: 100,
            y: 100,
            content: { text: "CEO" },
            accessibility: {
                ariaLabel: "John Smith - Chief Executive Officer"
            }
        }
    ]
});
</script>

The accessibility role description of the shape.

Default: "Shape"

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        {
            id: "1",
            x: 100,
            y: 100,
            content: { text: "Start" },
            accessibility: {
                ariaRoleDescription: "Terminator"
            }
        }
    ]
});
</script>

The accessibility role of the shape.

Default: "graphics-symbol"

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        {
            id: "1",
            x: 100,
            y: 100,
            content: { text: "Decision" },
            accessibility: {
                role: "img"
            }
        }
    ]
});
</script>