steps Array

Array of steps to be rendered in the Stepper. If the array contains objects, their fields will be used for each Step. If the array contains strings, those will be used as Step labels.

Example - steps defined as array of strings

<nav id="stepper"></nav>

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

Example - steps defined as array of objects

<nav id="stepper"></nav>

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