no se si servira pero puedes emplear el evento
Código Delphi
[-]procedure TfPrincipal.cxGridDBTableViewTuDataSetCustomDrawCell(
Sender: TcxCustomGridTableView; ACanvas: TcxCanvas;
AViewInfo: TcxGridTableDataCellViewInfo; var ADone: Boolean);
begin
if tuCombocolorbox.ItemIndex...... then
begin
ACanvas.Brush.Color := clGreen;
ACanvas.Font.Style := [fsBold];
ACanvas.Font.Color := clRed;
end;
end;