Using this simple code here I keep getting a Tooltip position "undefined" is not a valid message
<mat-form-field matTooltip="Testing tooltips" [matTooltipPosition]='right' #tooltip="matTooltip"> <input matInput [value]="Testing"/> </mat-form-field> My app_module.ts has
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import {MatTooltipModule} from '@angular/material/tooltip'; I am using Angular 7.2. Is there something else that I need in order to get the tooltip position to work?
If I remove the matTooltipPosition then the tooltip shows fine but it's not in the place that I want it