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

PivotGridSettings.DataAreaPopupCreated Property

Occurs after a panel that displays data headers has been created.

Namespace: DevExpress.Web.Mvc

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

Declaration

public EventHandler<PivotDataAreaPopupCreatedEventArgs> DataAreaPopupCreated { get; set; }

Property Value

Type Description
EventHandler<PivotDataAreaPopupCreatedEventArgs>

A EventHandler<TEventArgs><PivotDataAreaPopupCreatedEventArgs,> delegate method allowing you to implement custom processing.

Remarks

The PivotGrid allows you to display data in a more compact manner, by temporarily hiding data field headers. To do this, set the PivotGridWebOptionsView.DataHeadersDisplayMode property to ‘Popup’. In this instance, data fields are displayed within a hidden panel, which pops up when an end-user hovers the mouse over the data header area.

DataHeadersDisplayMode

The DataAreaPopupCreated event is raised after a panel that displays data headers has been created, and enables you to customize its settings and contents. To obtain the popup panel, use the event parameter’s Popup property.

See Also