Reputation: 17511
I want to clone(using VBA) some charts and be able to change them for that I need to know what they contain.
How to list properties of a chart object in VBA, more like an object dump in other languages?
Upvotes: 1
Views: 8201
Reputation: 53623
In the VBE, use the Locals window:
You can then copy any existing charts, and simply manipulate the properties that need to be changed for each, or you can create new charts on-the-fly, setting the properties as needed.
Upvotes: 2