查看完整内容
CustomTextCellType.prototype.paint = function(ctx, value, x, y, w, h, style, context) {
let formatter = context.sheet.getFormatter(context.row, context.col);
if(value && formatter && formatter !== "@") {
value = formatter.format(value)
}
通过.formatter()设置格式化后,在重新绘制的时候再调用它的格式化就可以了