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

PivotGridSettings.CustomCellValue Property

Allows you to replace cell values with custom ones.

Namespace: DevExpress.Web.Mvc

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

Declaration

public EventHandler<PivotCellValueEventArgs> CustomCellValue { get; set; }

Property Value

Type Description
EventHandler<PivotCellValueEventArgs>

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

Remarks

The CustomCellValue event fires for each cell. You can handle it to replace the calculated cell values with custom ones.

Note

Values provided via the CustomCellValue event cannot be used to sort data according to the PivotGridFieldBase.SortBySummaryInfo object’s settings.

See Also