removeAt
Removes a Step that is present at a given index.
Parameters
index Number
The index of the Step that should be removed.
Example
<nav id="stepper"></nav>
<script>
var stepper = $("#stepper").kendoStepper({
steps: [{
label: "Initial step"
}, {
label: "Second step"
},{
label: "Third step"
}]
}).getKendoStepper();
stepper.removeAt(1);
</script>