I tried to print stepper into stepper:
<mat-vertical-stepper>
<mat-step *ngFor="let step of Steps" [label]="step.name">
<mat-vertical-stepper>
<mat-step *ngFor="let substep of step.subnames" [label]="substep.subname">
</mat-step>
</mat-vertical-stepper>
</mat-step>
</mat-vertical-stepper>
It works but I would like to change numerotation:
change
- 1
- 1
- 2
- 2
- 1
- 2
into
- 1
- 1.1
- 1.2
- 2
- 2.1
- 2.2
How to do this, please?