Pay attention that the pivot.export() method used for exporting Pivot data to Excel has been deprecated since v1.4. You need to use the xlsx() method of the Export module instead:
pivot.export.xlsx({//config});
Both ways will be available till the next version. After that the pivot.export() method will be removed.
In version 1.3 the following changes have been made:
There are methods that have been deprecated: addFilter(), removeFilter() and getFilter().
In order to work with the filtering functionality, you need to update the applied methods to a newer version of the API.
The list of deprecated methods and their new variants includes:
In version 1.1 | From version 1.2 |
pivot.addFilter | pivot.setFilterValue/pivot.setFiltersValues |
pivot.removeFilter | pivot.clearFilterValues/pivot.setFilterValue(id,{}) |
pivot.getFilter | pivot.getFilterValue/pivot.getFiltersValues |