specifies the format function for displaying data in all columns
webix.ui({
view:"pivot",
format: function(value){
return (value&& value!="0"?parseFloat(value).toFixed(1):value);
}
});
The default value:
format: function(value){
return (value&& value!="0"?parseFloat(value).toFixed(3):value);
}
Back to top