AlexZ 发表于 2020-10-28 16:03:26

[V14 新功能预览] 单元格支持渐变以及模板填充

在 V14.0 中,单元格支持渐变及模板填充,效果如下图:



示例代码

sheet = spread.getActiveSheet()

var style = new GC.Spread.Sheets.Style();
style.backColor = "red";//the old solid fill
sheet.setStyle(1,1,style);

var gra = {degree: 315, stops: [{position:0, color:"red"},{position:0.5, color:"white"},{position:1, color:"blue"},]};
style = new GC.Spread.Sheets.Style();
style.backColor = gra;
sheet.setStyle(2,1,style);

var gra2 = {type:"path", left: 0.4, top: 0.4, right: 0.6, bottom: 0.6, stops: [{position:0, color:"black"},{position:0.5, color:"blue"},{position:1, color:"white"},]},
style = new GC.Spread.Sheets.Style();
style.backColor = gra2;
sheet.setStyle(3,1,style)

for(i=1; i<19; i++){
    var pat = {type: i, backgroundColor: "orange", patternColor: "red"};
    style = new GC.Spread.Sheets.Style();
    style.backColor = pat;
    sheet.setStyle(4+i,1,style)
}

summerwang 发表于 2021-3-9 15:57:22

请问这种 repeating-linear-gradient 的效果用怎么实现?

Lynn.Dou 发表于 2021-3-9 16:05:19

您好,为了便于问题的后续沟通,建议您在 求助中心 发帖,并详细的描述您现在遇到的问题和期待的效果。

summerwang 发表于 2021-3-9 16:38:00

summerwang 发表于 2021-3-9 15:57
请问这种 repeating-linear-gradient 的效果用怎么实现?

找到方法了

Lynn.Dou 发表于 2021-3-9 16:47:06

:loap1:解决了就好
页: [1]
查看完整版本: [V14 新功能预览] 单元格支持渐变以及模板填充