Articles in this section
Category / Section

How to add multiple filters to the PivotGridControl

1 min read

It can be done by adding a new customized filter expression for corresponding filter item.

C#

this.pivotGrid1.Filters.Clear(); 
this.pivotGrid1.Filters.Add(new FilterExpression { Name = "DateFilter", Expression = "Date = FY 2007 OR Date = FY 2008" });
this.pivotGrid1.Filters.Add(new FilterExpression { Name = "ProductFilter", Expression = "Product = Bike" });

 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied