label Boolean
(default: true)
Indicates whether the Steps in the Stepper will render their label element (the text placed below the Step indicator circle).
Example
<nav id="stepper"></nav>
<script>
$("#stepper").kendoStepper({
label: false,
steps: ["Initial step", "Second step", "Third step"]
});
</script>