<mat-select class="dropBox" placeholder="Select One" (selectionChange)="mymethod($event.value)" style="background-color:#FFFFFF;">
<mat-option *ngFor="let option of myList" [value]="option" matTooltip="{{option}}>
{{option}}
</mat-option>
</mat-select>
Is there a way to selectively display tooltips for certain options in the list "myList" but not all? Any assistance would be greatly appreciated. Thank you.