Steps (Blazor)
This article demonstrates how to use the Steps component. Check also the component guide and API reference.
Name |
Type |
Default |
Description |
Name |
string |
‘steps’ + index suffix |
Unique name the component. |
SelectedIndex |
integer |
0 |
The index of the initially selected step. |
Steps |
array of steps |
One item |
The steps which the component displays. |
NextText |
string |
Next |
Next text. |
PreviousText |
string |
Previous |
Previous text. |
Name |
Type |
Default |
Description |
Change |
event |
null |
Fired when the selected step changes. Has one event argument index which is the index of the new step. |
Name |
Type |
Default |
Description |
Text |
string |
string |
The header text displayed by the step. |
<RadzenSteps>
<Steps>
<RadzenStepsItem Text="Step 1">
...
</RadzenStepsItem>
<RadzenStepsItem Text="Step 2">
...
</RadzenStepsItem>
<RadzenStepsItem Text="Step 3">
...
</RadzenStepsItem>
</Steps>
</RadzenSteps>