adds a new filter for the data
use instead:
id | string | the ID of the field |
handler | function | a handler for filtering, should return true or false |
pivot.addFilter("form", {
handler: function (name) { return name === "Republic" }
});
deprecated starting from version 1.2
Back to top