noahch
Results
2
comments of
noahch
You can add the mat-tab-group as ViewChild and call `realignInkbar()` on it. Example: x.component.html `` x.component.ts `@ViewChild('mainTabGroup', {static: false}) mainTabGroup: MatTabGroup;` `someFunction() { this.mainTabGroup.realignInkBar(); } `
You need to wrap `onhover` in `events`. e.g. ``` interactivity: { events: { onhover: { enable: false } } } ```