新韭菜 发表于 2024-7-23 14:12:45

FlexSheet 的.applyCellsStyle方法的第二个参数如何设置

如第一行前4列样式都为styleOne

const styleOne= {color: "white",
backgroundColor: "#646cff",
};
flexSheet.applyCellsStyle(styleOne, [0, 0, 1, 3]);




是这样吗?







Richard.Ma 发表于 2024-7-23 14:12:46

可以参考api文档
https://demo.grapecity.com.cn/wijmo/api/classes/wijmo_grid_sheet.flexsheet.html#applycellsstyle

第二个参数是需要传入一个CellRange数组,不传的话,默认就是选中的单元格区域

要传入的话,比如可以这样写
    flexSheet.applyCellsStyle({ backgroundColor: "red" },);



页: [1]
查看完整版本: FlexSheet 的.applyCellsStyle方法的第二个参数如何设置