您好!如果您使用的是在线表格编辑器Designer,可以通过右键菜单选项”设置单元格格式“设置单元格折角,如以下动图所示。
如果您使用的是SpreadJS表格控件,需要通过代码设置,如下代码所示:
- var style = new GC.Spread.Sheets.Style();
- style.decoration = {
- cornerFold: {
- size: 10,
- position: GC.Spread.Sheets.CornerPosition.rightTop,
- color: "red"
- },
- icons: [
- {
- src: './icon.png',
- width: 12,
- height: 12,
- position: GC.Spread.Sheets.IconPosition.left,
- }
- ]
- }
- sheet.setStyle(2, 2, style);
复制代码
可以参考官网API了解详情:
Style:decoration--https://demo.grapecity.com.cn/spreadjs/help/api/classes/GC.Spread.Sheets.Style#decoration
|