Как изменить ширину столбцов в динамической c таблице, поскольку она делится автоматически в зависимости от количества столбцов
<mat-table #table [dataSource]="dataSource" matSort >
<ng-container *ngFor="let disCol of displayedColumns; let colIndex = index" matColumnDef="{{disCol}}">
<mat-header-cell *matHeaderCellDef mat-sort-header
style="font-size: 15px; font-family: Arial, Helvetica, sans-serif; font-weight: 900;">
{{tableHeaderCaptions[colIndex] | titlecase}}
</mat-header-cell>
<mat-cell *matCellDef="let element "> {{element[disCol]}}
</mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;" (click)="OnSelect(row)"></mat-row>