Skip to main content
A newer version of this page is available. .

PivotGridControl.FieldFilterChanged Event

Occurs after a specific field’s filter criteria was changed.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.2.dll

Declaration

public event PivotFieldEventHandler FieldFilterChanged

Event Data

The FieldFilterChanged event's data class is PivotFieldEventArgs. The following properties provide information specific to this event:

Property Description
Field Gets the field being processed. Inherited from PivotFieldEventArgsBase<T>.

Remarks

The FieldFilterChanged event occurs after the filter criteria have been changed for a specific field.

Applying filter criteria to fields lets you limit the number of records summarized by the PivotGrid control. Use the PivotGridFieldBase.FilterValues property to change the filter criteria for a specific field via code. An end-user can change the filter criteria by clicking the field’s Filter Button and selecting the required values which should be displayed within the control via the filter dropdown list.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FieldFilterChanged event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also