navigatable.disabledBoolean(default: false)
If set to true, disables keyboard navigation in the diagram.
Example - disabling keyboard navigation
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
navigatable: {
disabled: true
},
shapes: [
{ id: "1", x: 100, y: 100, content: { text: "Shape 1" } }
]
});
</script>