我们知道,SpreadJS支持给工作簿添加背景图,也支持给某一个单元格设置背景图。
有小伙伴有这样的需求:给一片单元格区域设置背景图,
这该如何实现呢?
方案1:将这片单元格区域设置合并单元格,然后给这个合并单元格设置背景图。
- sheet.getCell(0,0).backgroundImage("https://gcdn.grapecity.com.cn/uc_server/avatar.php?uid=52354&size=middle")
复制代码
方案二:通过自定义单元格实现
创建自定义单元格类型
- function WaterMarkCellType() {
- this.typeName = "WaterMarkCellType"
- }
- WaterMarkCellType.prototype = new GC.Spread.Sheets.CellTypes.Text();
- WaterMarkCellType.prototype.paint = function (ctx, value, x, y, w, h, style, options) {
- //Paints a cell on the canvas.
- var background = style.backgroundImage;
- style.backgroundImage = undefined;
- GC.Spread.Sheets.CellTypes.Text.prototype.paint.apply(this, arguments)
- GC.Spread.Sheets.CellTypes.Text.prototype.paint.call(this, ctx, undefined, x, y, w+100, h+100, {backgroundImage:background}, options)
- };
复制代码 给单元格区域的左上角单元格设置此单元格类型,背景图片由此绘制。
- var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"));
- var sheet = spread.getActiveSheet();
- sheet.getCell(3, 3).cellType(new WaterMarkCellType()).backgroundImage('https://www.grapecity.com.cn/images/metalsmith/home/logo_spjs.png')
- sheet.setArray(2, 2, [[1,2,3,4,5,6,],[1,2,3,4,5,6,],[1,2,3,4,5,6,],[1,2,3,4,5,6,],[1,2,3,4,5,6,],[1,2,3,4,5,6,]])
复制代码 解决滑动滚动条时,图片未完全绘制的问题。
(原因:
由于Demo中是把单个单元格中的背景图进行了放大绘制,
而当滚动条滚动到目标单元格下方时,目标单元格并未被绘制,此时就会出现问题。
解决办法是添加滚动条事件,在事件中注册setTimeout,将sheet重绘即可。
setTimeout时间应控制在不影响视觉效果的情况下尽量长一些。)
- var setTimeoutId = null;
- sheet.bind(GC.Spread.Sheets.Events.TopRowChanged, function (s, e) {
- clearTimeout(setTimeoutId);
- // 这里的间隔时间,在不影响视觉效果的情况下尽可能长一点
- setTimeoutId = setTimeout(function(){
- e.sheet.repaint();
- }, 50);
- });
复制代码
最终效果如下图:
完整代码请参考附件demo
|
|