Derrick.Jiao 发表于 2021-5-8 10:37:03

SpreadJS V14 Update1 新特性 - 形状增强 - 边框

在此版本中,我们为形状新增了边框效果。共有五种线型,分别为:simple、double、thickThin、thinThick、triple。


五种线型应用到形状上效果如下:


添加的方法也跟简单,我们需要指定GC.Spread.Sheets.Shapes.CompoundType的类型,这是一个枚举类型对应这上面的5种效果。
var rect = sheet.shapes.add('rect', GC.Spread.Sheets.Shapes.AutoShapeType.lineCallout2, 100, 50, 300, 200);
    var shapeStyle = rect.style();
    shapeStyle.line.compoundType = GC.Spread.Sheets.Shapes.CompoundType.thickThin;
    rect.style(shapeStyle);

页: [1]
查看完整版本: SpreadJS V14 Update1 新特性 - 形状增强 - 边框