stepper.label Boolean (default: true)

Specifies whether the Stepper instance will display the labels of its steps.

Example

<div id="wizard"></div>

<script>
    $("#wizard").kendoWizard({
        stepper: {
            label: false
        },
        steps: ["Initial step", "Second step", "Third step"]
    });
</script>
In this article