How can I fill this table whit dynamic data on angular

Viewed 25

I need to fill this table whit dynamic data in angular The table that i need to create

but when ever I try to print the data I get this. How I print

And this its my code

<div class="ssddiv" style="left: 50pt; top: 220pt" width="100%" border="0" cellspacing="0" cellpadding="0">
        <table class="table table-striped table-bordered; css3" style="width:100%;height:100%;">
          <tr>
            <td>Estacion</td>
            <td>Vía</td>
            <td>Placa</td>
            <td>Comprobante Pago</td>
            <td>Fecha / Hora</td>
            <td></td>
            <td>Importe S/.</td>
            <td>Usuario Recaudador</td>
          </tr>
          <tr *ngFor="let agrupacion of reporte.agrupacionesRastreoVehiculo">
            <td>{{agrupacion.estacion}}</td>
            <td>CU1</td>
            <td>T4U882</td>
            <td>A3CU1L22I061561</td>
            <td style="text-align: right">2021/05/05</td>
            <td>19:55</td>
            <td style="text-align: right">7.50</td>
            <td>ftapullima2</td>
          </tr>
          <tr>
0 Answers
Related