steps.selected Boolean
(default: false)
Defines whether the Step is selected.
Example
<nav id="stepper"></nav>
<script>
$("#stepper").kendoStepper({
steps: [{
label: "Initial step"
}, {
label: "Second step",
selected: true
},{
label: "Third step"
}]
});
</script>