Hello
I need to draw row grand total all one color and specific column totals and content second color. but if I make it this way:
procedure TfrmOrderReport.DBPivotGridStylesGetContentStyle(
Sender: TcxCustomPivotGrid; ACell: TcxPivotGridDataCellViewInfo;
var AStyle: TcxStyle);
begin
pgfQuantity.Styles.Content:= cxStyle32;//red
pgfQuantity.Styles.Total:= cxStyle32;//red
if ACell.Row.IsGrandTotal then
AStyle := cxStyle208; //yellow
end;
it draw all specific column totals one color and the rest of grand total row second color.
As you can see on picture all that is marked yellow has to be yellow.
thank you