I want to change the color index of a MS Graph object, which I expose i
an Access application. I can either do it programmatically (preferred
or at design time.
I can change the ColorIndex property of an Excel char
programmatically, using the workbook Colors(Index) property, with Inde
indicating the ColorIndex value to change. The Index range, of course
is 1 to 56, and to change the Index in Excel object wkbBook1, a
follows:
wkbBook1.Colors(44) = vbYellow
...changes the ColorIndex 44 to Yellow. Any color value can be used.
However, I cannot do the same code for the MS Graph object. I suspec
I'm looking at a higher level object to access. I would like to kno
which object controls the ColorIndex property for the MS Graph object
and if it can't be done programmatically, how can I set it at desig
time? I don't mind API or even registry changes, but I can't seem t
find the ColorIndex anywhere.
Thanks for your help