shapeDefaults.accessibility.ariaRoleDescriptionString(default: "Shape")

The accessibility role description of shape elements.

Example

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