<th*ngFor="let airline_col of chut_lists">{{airline_col.COL_CN}}</th>
</tr>
</thead>
<tbody>
<tr*ngFor="let airline_row of render_data;let i = index"(click)="selectRow($event,i)"
[ngClass]="{'active':row_state===i}">
<td>{{i+1}}</td>
<td*ngFor="let airline_col of chut_lists"[ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td>