I have a mat-horizontal-stepper
where I set linear property as true. When all the steps are valid as of now I can navigate to previous steps by clicking the header or label. I don't want that property.
I need to navigate only through buttons.
I tried disabling pointer function with:
.mat-horizontal-stepper-header{
pointer-events: none;
}
but it didn't worked.
I need either to stop navigating by clicking header or fire a function on clicking the stepper header.