We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd5b49 commit 2714780Copy full SHA for 2714780
projects/igniteui-angular/src/lib/services/excel/excel-files.ts
@@ -671,7 +671,8 @@ export class WorksheetFile implements IExcelFile {
671
: this.sheetData += str
672
}
673
674
- if (currentCol.headerType === ExportHeaderType.RowHeader && currentCol.columnSpan && currentCol.columnSpan > 1 ) {
+ if ((currentCol.headerType === ExportHeaderType.RowHeader || currentCol.headerType === ExportHeaderType.MultiRowHeader) &&
675
+ currentCol.columnSpan && currentCol.columnSpan > 1 ) {
676
columnCoordinate = ExcelStrings.getExcelColumn(column + currentCol.columnSpan - 1) + (rowCoordinate + spanLength - 1);
677
678
0 commit comments