我有一个用ngFor
构建的表,我想知道每个单元格上是否可以有三个MatTooltip
?我已经搜索了2天,但是没有找到任何示例。
我考虑过使用ViewChild
并以编程方式添加三个工具提示,但是我不知道如何开始,任何帮助将不胜感激。
这是表格中的摘录:
<tr *ngFor="let o of origins">
<th>{{o}}</th>
<td *ngFor="let d of destinations" [textContent]="getContent(o,d)">
</td>
</tr>