How to export Excel file from Angular Material 5 Mat-Table (Angular Material Table)?
问题 I am new to Angular and using Angular material 5 mat-table and trying to export the table in a excel file. I have use SheetJS XLSX package. Below is my code: Table.component.html: <mat-table #table [dataSource]="dataSource" matSort> <!-- ID Column --> <!--<ng-container matColumnDef="ID"> <mat-header-cell *matHeaderCellDef mat-sort-header> UserID </mat-header-cell> <mat-cell *matCellDef="let row"> {{row.UserID}} </mat-cell> </ng-container>--> <!-- Progress Column --> <ng-container matColumnDef