Steps Labels
The Stepper component allows you to set labels for the corresponding step indicators. You can define the desired labels through the Label
parameter the StepperStep
exposes. If you don't set value to the Label
parameter, no label will be rendered for the step indicator.
@* Stepper with icon indicators and labels *@
<div style="width:500px">
<TelerikStepper>
<StepperSteps>
<StepperStep Label="Personal Info" Icon="@SvgIcon.User"></StepperStep>
<StepperStep Label="Education" Icon="@SvgIcon.Book"></StepperStep>
<StepperStep Label="Experience" Icon="@SvgIcon.FlipVertical"></StepperStep>
<StepperStep Label="Attachments" Icon="@SvgIcon.Paperclip"></StepperStep>
</StepperSteps>
</TelerikStepper>
</div>
@* Stepper with icon indicators and only a couple labels *@
<div style="width:500px">
<TelerikStepper>
<StepperSteps>
<StepperStep Label="Personal Info" Icon="@SvgIcon.User"></StepperStep>
<StepperStep Icon="@SvgIcon.Book"></StepperStep>
<StepperStep Icon="@SvgIcon.FlipVertical"></StepperStep>
<StepperStep Label="Attachments" Icon="@SvgIcon.Paperclip"></StepperStep>
</StepperSteps>
</TelerikStepper>
</div>
@* Stepper with only indicators and no labels *@
<div style="width:500px">
<TelerikStepper>
<StepperSteps>
<StepperStep Icon="@SvgIcon.User"></StepperStep>
<StepperStep Icon="@SvgIcon.Book"></StepperStep>
<StepperStep Icon="@SvgIcon.FlipVertical"></StepperStep>
<StepperStep Icon="@SvgIcon.Paperclip"></StepperStep>
</StepperSteps>
</TelerikStepper>
</div>