Skip to main content

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

public event CustomizePivotCellEventHandler CustomizeCell

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.

View Example: How to Export ASP.NET MVC Pivot Grid to PDF and XLSX Formats with Custom Settings

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;
        }
    }
See Also