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

ASPxPivotGrid.FieldAreaChanged Event

Occurs after the field’s location or visibility has been changed.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v18.2.dll

Declaration

public event PivotFieldEventHandler FieldAreaChanged

Event Data

The FieldAreaChanged 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

A field can be placed within one of four areas: Filter Header Area, Column Header Area, Row Header Area or Data Header Area. The FieldAreaChanged event occurs when the field’s Area property is changed.

An end user can drag a field between and within the areas. Dragging the field to the customization form hides this field. In this case, field’s PivotGridFieldBase.Visible property becomes false, but the PivotGridFieldBase.Area property remains unchanged. For example, you hide a field from the Data Area. The field’s PivotGridFieldBase.Area property value is still DataArea, but its PivotGridFieldBase.Visible property is changed to false.

See Also