Hide Column Totals
This example demonstrates how to handle the CustomCellValue
event to hide the Discount field grand totals.
private void PivotGridControl1_CustomCellValue(object sender, PivotCellValueEventArgs e) {
if (e.ColumnValueType == FieldValueType.GrandTotal
&& e.DataField == fieldDiscount)
e.Value = null;
}
<dxpg:PivotGridControl DataProcessingEngine="Optimized"
CustomCellValue="PivotGridControl1_CustomCellValue"
Name="pivotGridControl1">
<dxpg:PivotGridControl.Fields>
<!-- ... -->
<dxpg:PivotGridField Name="fieldDiscount" Area="DataArea" CellFormat="p">
<dxpg:PivotGridField.DataBinding>
<dxpg:DataSourceColumnBinding ColumnName="Discount"/>
</dxpg:PivotGridField.DataBinding>
</dxpg:PivotGridField>
<!-- ... -->
</dxpg:PivotGridControl.Fields>
</dxpg:PivotGridControl>