Pivot table back color change

A

Ashok

I am add some fields in Pivot table using

objPTView.RowAxis.InsertFieldSet(objPTView.FieldSets["Test"], null, false);

and able to change back color using

axPivotTable1.ActiveView.FieldLabelBackColor = "SteelBlue";

I am sure it's there but I am not able to find a properties to change back
color of field area.

I am also change back color of total area like this
axPivotTable1.ActiveView.TotalBackColor = "LightBlue";

but on left side where you drop ROWS from field list. I don't know how to
change the back color????

Thank you - Ashok
 
A

Alvin Bruney [MVP]

You will need to look at the object model to see if a property is
available. Most of us don't carry that type of information at the top of our
heads.
 
Top