Description

필터의 설정 모델이다.

Properties

operation
Type: FilterOperation 필터들간의 ‘and’, ‘or’ 조건을 지정한다.

conditions
Type: Array of Object
name과 value, 혹은 name과 criteria로 구성된 Object

Examples

pivot.filter({
	operation: "and",  
	conditions: [
		{ name: "OrderYear", values: [1996] },
		{ name: "UnitPrice", criteria: "value > 50" }
	]
});