I have an HTML page in which I want to create a table. The columns in this table are dynamic which means that they are fetched from the server into a variable in the compone
Instead of using
<tr *ngFor="#data of data">
You should use
<tr *ngFor="#data of data" *ngModel="data[column]">