我在我的 Angular 5 应用程序中使用了这个角材料组件:
默认显示 6 个选项。有没有办法调整它,例如默认显示 4 个选项?
<mat-form-field style="width:88%;margin-top:5px;">
<mat-select formControlName="contact" placeholder="Kontakt *">
<ngx-mat-select-search [formControl]="contactFilter"></ngx-mat-select-search>
<mat-option *ngFor="let contact of filteredContacts | async" [value]="contact" style="max-height:50px;">
{{contact.institution}} - {{contact.address.postalCode}} {{contact.address.region}}
</mat-option>
</mat-select>
</mat-form-field>