when i use
cells=function (row, col) {
var cellProperties={};
if(row==14&&col==12)
{
cellProperties=
{type: ‘numeric’,
numericFormat: {
pattern: ‘0,0.00’,
culture: ‘zh-CN’ // this is the default culture, set up for USD
}
}
cellProperties.renderer = _self.negativeValueRenderer;
console.log(times);
}
return cellProperties;
the numericFormat not done.why?
and console.log run many times.