getFilterValue

returns the value of a specified filter

object getFilterValue(id field);

Parameters

fieldidthe id of a field

Returns

objectan 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