stepper.linear Boolean (default: true)

Specifies whether the Stepper will allow non-linear navigation (selection of steps which are not immediately next to the current step).

Example

<div id="wizard"></div>

<script>
    $("#wizard").kendoWizard({
        stepper: {
            linear: false
        },
        steps: ["Initial step", "Second step", "Third step"]
    });
</script>
In this article