I have an Angular horizontal stepper, that is disabled in the css and I want to display the tooltip. This is not going to work because of the disabled css code.
// .ts file:
<mat-horizontal-stepper labelPosition="bottom" #stepper>
<mat-step
editable="false">
<ng-template matStepLabel>
<span matTooltip="'test11111'">test1</span>
</ng-template>
</mat-step>
</mat-horizontal-stepper>
// .scss file
:host ::ng-deep .mat-horizontal-stepper-header-container {
pointer-events: none;
cursor: not-allowed;
}
How can the tooltip be displayed with disabled step?