steps.label String
Defines the label (text) of the Step.
Example
<nav id="stepper"></nav>
<script>
$("#stepper").kendoStepper({
steps: [{
label: "Initial step"
}, {
label: "Second step"
},{
label: "Third step"
}]
});
</script>