是否可以使用 kendo-grid-excel 将样式(单元格背景颜色)添加到 excel 导出的文件?

Is it possible to add style (cell background color) to a excel exported file using kendo-grid-excel?

我需要一些帮助,你可以给我一个例子。 我想知道如何使用 kendo-grid-exce

将样式(单元格背景颜色)添加到 excel 导出的文件

示例 here 正是这样做的:

public onExcelExport(e: any): void {
    const rows = e.workbook.sheets[0].rows;

    // align multi header
    rows[0].cells[2].hAlign = 'center';

    // set alternating row color
    let altIdx = 0;
    rows.forEach((row) => {
        if (row.type === 'data') {
            if (altIdx % 2 !== 0) {
                row.cells.forEach((cell) => {
                    cell.background = '#aabbcc';
                });
            }
            altIdx++;
        }
    });
}