accessibility.roleString(default: "graphics-document")
The accessibility role of the diagram element.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
accessibility: {
role: "img"
},
shapes: [
{ id: "1", x: 100, y: 100, content: { text: "Shape 1" } }
]
});
</script>