Link to home
Start Free TrialLog in
Avatar of mkngau
mkngau

asked on

MSChart Column Label

Hi,
   Somebody pls help me on how to control, the MSChart ColumnLabel?
I need to specify my own Legend label.
Thanks.
ASKER CERTIFIED SOLUTION
Avatar of vbyuval
vbyuval

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Éric Moreau
In code, it gives this:
with mschart1
   .Column = 1
   .ColumnLabel = "Your Label 1"
   .Column = 2
   .ColumnLabel = "Your Label 2"
end with
Avatar of mkngau
mkngau

ASKER

Thanks for your help. Bye...