I have started using the md-table for my project, and I want fixed column width. Currently all columns width are divided into equal size.
Where can I get the documen
If you are using angular/flex-layout in your project, you can set column with by adding fxFlex directive to mat-header-cell and mat-cell:
Name {{row.Name}}
Otherwise, you can add custom CSS to achieve the same result:
.mat-column-name{ flex: 0 0 100px; }