shapes.accessibility.ariaLabelString
The accessibility label of the shape.
Example
<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>