shapeDefaults.accessibility.ariaLabelString

The accessibility label of shape elements.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapeDefaults: {
        accessibility: {
            ariaLabel: "Workflow step"
        }
    },
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Step 1" } },
        { id: "2", x: 300, y: 100, content: { text: "Step 2" } }
    ]
});
</script>