removeAt
Removes a step that is present at a given index.
Parameters
index Number
The index of the step that should be removed.
Example
<div id="wizard"></div>
<script>
var wizard = $("#wizard").kendoWizard({
steps: [{
title: "Initial step"
},{
title: "Second step"
}]
}).data("kendoWizard");
wizard.removeAt(1);
</script>