PivotXlsxExportOptions.CustomizeCell Event
Allows you to specify cell formatting when exporting a Pivot Grid control to XLSX format in data-aware mode.
Namespace: DevExpress.Web.ASPxPivotGrid
Assembly: DevExpress.Web.ASPxPivotGrid.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Remarks
Use the CustomizePivotCellEventArgs.RowType and CustomizePivotCellEventArgs.ColumnType parameters to identify a row and column containing the cell. To specify the cell location in the exported Excel document, use the CustomizePivotCellEventArgs.ExportArea property. To customize the cell format, use the CustomizePivotCellEventArgs.Formatting property. Note that you should set the CustomizePivotCellEventArgs.Handled parameter to true to apply changes.
PivotXlsxExportOptions GetXlsxOptions()
{
PivotXlsxExportOptions options = new PivotXlsxExportOptions();
options.CustomizeCell += Options_CustomizeCell;
return options;
}
void Options_CustomizeCell(CustomizePivotCellEventArgs e)
{
if (e.CellItemInfo != null)
{
switch (e.CellItemInfo.ColumnValueType)
{
case PivotGridValueType.GrandTotal:
// Specify the text to display in a cell.
e.Value = string.Format("=> {0}", e.Value.ToString());
// Specify the colors used to paint the cell.
e.Formatting.BackColor = Color.Gray;
e.Formatting.Font.Color = Color.Orange;
break;
case PivotGridValueType.Total:
e.Formatting.BackColor = Color.DarkOliveGreen;
e.Formatting.Font.Color = Color.White;
break;
case PivotGridValueType.Value:
e.Formatting.Font.Color = Color.Gray;
break;
}
e.Handled = true;
}
}
Tip
To customize an exported cell in WYSIWYG export mode, handle the following events:
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CustomizeCell 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.