I would like to render table giving the array, e.g. let results=[[1,2,3],[4,5,6],[7,8,9]]
looking like:
1 2 3
4 5 6
7 8 9
but have no idea how to set number of rows properly, using such a template
<table>
<ng-container *ngFor="let result of results">
<tr>
<td>{{result}}</td>
</tr>
</ng-container>
</table>
I get the table with one row in fact. How to manage rows number for such a case? It may seems trivial but hard to manage due to lack of experience with Angular2+. Thank you!