RadzenSteps disable top menu click

Newbie here, sorry
Is there a way to disable the clicking on the 1 - 2 - 3 menu items at the top of the RadzenSteps component ?
I don't want users to be able to jump to the next step until the current step is completed.

I'm sure I'm missing something obvious.

Thanks

Hi @PeterGillham1,

The demo itself shows how to disable items. This is done via the Disabled attribute:

<RadzenStepsItem Text="Orders" Disabled="@(selectedCustomers == null || selectedCustomers != null && !selectedCustomers.Any())">

Of course !
OK many thanks