FlexSheet 的.applyCellsStyle方法的第二个参数如何设置
如第一行前4列样式都为styleOneconst styleOne= {color: "white",
backgroundColor: "#646cff",
};
flexSheet.applyCellsStyle(styleOne, [0, 0, 1, 3]);
是这样吗?
可以参考api文档
https://demo.grapecity.com.cn/wijmo/api/classes/wijmo_grid_sheet.flexsheet.html#applycellsstyle
第二个参数是需要传入一个CellRange数组,不传的话,默认就是选中的单元格区域
要传入的话,比如可以这样写
flexSheet.applyCellsStyle({ backgroundColor: "red" },);
页:
[1]