Surely they will say that it is something very easy to do but I am trying to go through the data array in this way
<tr *ngFor="let list of listadoRangosPivot; let i = index">
<td class="text-right">{{list.id_tercero_fk}}</td>
<td>{{list.nombres_tercero}}</td>
<td *ngFor="let item of listadoRangosPivot; let j = index">{{ list.rangos.total[i,j]}}</td>
</tr>
This is the JSON with the data I'm trying to cover
But in response this is what it brings to the table, if someone could already do so I would appreciate your help and advice.