getFilterValue
returns the value of a specified filter
object getFilterValue(id field);
object | an object with filter configuration |
Example
pivot.getFilterValue("name");
Details
The returned object contains the following attributes:
- operation - (string) the type of the filtering operation
- filter - (string) the input value to compare with possible values of the field
- values - (array) an array of data values matching to the input value
See also
Back to top