New to Kendo UI for jQueryStart a free 30-day trial

Navigatable

configuration

Defines the keyboard navigation options for the diagram.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    navigatable: {
        disabled: false,
        smallStep: 2,
        largeStep: 10
    },
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Shape 1" } },
        { id: "2", x: 300, y: 100, content: { text: "Shape 2" } }
    ],
    connections: [
        { from: "1", to: "2" }
    ]
});
</script>

If set to true, disables keyboard navigation in the diagram.

Default: false

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    navigatable: {
        disabled: true
    },
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Shape 1" } }
    ]
});
</script>

The number of pixels to move the selected shape when using Shift + Cmd/Ctrl + Arrow keys.

Default: 5

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    navigatable: {
        largeStep: 20
    },
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Shape 1" } }
    ]
});
</script>

The number of pixels to move the selected shape when using Cmd/Ctrl + Arrow keys.

Default: 1

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    navigatable: {
        smallStep: 5
    },
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Shape 1" } }
    ]
});
</script>