I have a table that receives a .JSON. I have created some filters and I would like to save them but without saving the information that I received at that time with the filter. I already tried:
pivot.getData({},
function(data) {
console.log(data);
},
function(data) {
console.log(data);
}
);
Too
var report = pivot.getReport();
console.log(report);
by last
pivot.save({filename:'reporte.json',embedData : false });
Thanks for your help