The Filter class creates a filter condition on a cross tab dimension level. The condition is expressed as value1 operator value2. The values can either be a single value, or an array of values, depending on the operator. For example, IN can be expressed as value1 IN value2 value3 ... valueN.
String. The operator can be any operator. Table 5-8 lists the valid filter operators and the number of arguments to pass to the constructor or setValues( ).
Table 5-9 lists actuate.xtabanalyzer.Filter functions.
var filter = new actuate.xtabanalyzer.Filter("levelName","attributeName","EQ","2000","blank");
var filter = new actuate.xtabanalyzer.Filter("levelName","blank","EQ","2000","equality");
var filter = new actuate.xtabanalyzer.Filter("blank","attributeName",EQ","2000","equality");
var filter = new actuate.xtabanalyzer.Filter("levelName","attributeName","NOT","2000","equality");