orientation String (default: "horizontal")

Indicates whether the Stepper will be rendered vertically or horizontally (default).

Example

<nav id="stepper" style="height: 600px"></nav>

<script>
    $("#stepper").kendoStepper({
        orientation: "vertical",
        steps: ["Initial step", "Second step", "Third step"]
    });
</script>
In this article