Category / Section
How to Hide or remove the Drop Filter fields here in the grouping bar
1 min read
It can be done by assigning the null value to the Filter Header Area TextBlock in the grouping bar. The following code snippet explains the same.
C#
void pivotGrid1_Loaded(object sender, RoutedEventArgs e) { if (this.pivotGrid1.ShowGroupingBar) { (this.pivotGrid1.GroupingBar.FilterHeaderArea.Items[0] as TextBlock).Text = " "; } }