I want to navigate the stepper only through the next and back buttons.
I can\'t get this to work since users can also click each step label to navigate to any step. I c
First you need add ViewEncapsulation.None in your component config
ViewEncapsulation.None
@Component({ selector: 'app-example', encapsulation: `ViewEncapsulation.None` })
Then add this in your component CSS.
.mat-horizontal-stepper-header-container { display: none !important; }