connections.accessibility.roleString(default: "graphics-symbol")
The accessibility role of the connection.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [
{ id: "1", x: 100, y: 100, content: { text: "A" } },
{ id: "2", x: 300, y: 100, content: { text: "B" } }
],
connections: [
{
from: "1",
to: "2",
accessibility: {
role: "img"
}
}
]
});
</script>