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

PivotGridSettings.BeforeGetDataObject Property

Enables you to perform custom actions before PivotGrid generates a chart data source from data and after the PivotGrid’s callback state is applied.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public EventHandler BeforeGetDataObject { get; set; }

Property Value

Type Description
EventHandler

An EventHandler delegate method allowing you to implement custom processing.

Remarks

When a callback is sent to the server to update the chart and modified settings are passed to the PivotGridExtension.GetDataObject method, the new pivot grid settings are overridden by the applied pivot grid’s callback state. You can use the BeforeGetDataObject property to apply custom settings to the PivotGrid before a Chart data source is generated but after the PivotGrid’s callback state is applied.

See Also