网站那个Demo
您加上 sheet.getCell(0,1).formatter("#,##0.000")
然后都输入数字就可以看到效果了
- FullNameCellType.prototype.paint = function (ctx, value, x, y, w, h, style, options) {
- if (value) {
- var text = this.format(value.firstName + "." + value.lastName, style.formatter)
- if (!ctx) {
- return;
- }
- ctx.save();
- ctx.fillText(text,x + w, y + h);
- ctx.restore();
- // spreadNS.CellTypes.Base.prototype.paint.apply(this, [ctx, value.firstName + "." + value.lastName, x, y, w, h, style, options]);
- }
- };
复制代码 |