steps.title String

Specifies a title of the current step.

Example

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

<script>
    $("#wizard").kendoWizard({
        steps: [{
            title: "Initial step"
        }]
    });
</script>
In this article