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.v22.2.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: