How to add multiple filters to the PivotGridControl
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" });