I'm using Angular Material version 7 and I would like to ask how to keep the autocomplete panel position to always be "above" the input. Right now, if there's still space below, the autocomplete panel will show below. Only when there's no more space below then it will display above. I would like to always display it above.
<mat-form-field>
<input type="text" matInput [formControl]="myControl" [matAutocomplete]="auto">
</mat-form-field>
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let option of options" [value]="option">{{option}}</mat-option>
</mat-autocomplete>