Seeking help on showcasing an array of elements in a list format using mat-angular tooltip.
This code snippet belongs to app.component.html
<button mat-raised-button
matTooltip={{items}}
aria-label="Button that displays a tooltip when focused or hovered over">
Action
</button>
The following code can be found in app.component.ts
items=['A','B,'C']
Currently, the array elements are displayed as comma-separated values. What I need is to display them in a list format with each element on a new line.
Appreciate any assistance, thank you!