accessibility.ariaLabelString
The accessibility label of the diagram element.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
accessibility: {
ariaLabel: "Company organizational structure diagram"
},
shapes: [
{ id: "1", x: 100, y: 100, content: { text: "CEO" } },
{ id: "2", x: 100, y: 200, content: { text: "CTO" } }
],
connections: [
{ from: "1", to: "2" }
]
});
</script>