Hello,
I would like to hide grid lines internal to the Area and Horiz Area charts.
I can do what I want in the Edit Chart GUI in Format -> Area Lines -> Format -> Visible
How in code can I achieve the same result?
Thanks
Mark
Mapping of Edit Chart GUI with object properties
Mapping of Edit Chart GUI with object properties
- Attachments
-
- InternalGridLines.jpg (88.7 KiB) Viewed 9556 times
Re: Mapping of Edit Chart GUI with object properties
Hello Mark,
You are looking for the AreaLinesPen property:
You are looking for the AreaLinesPen property:
Code: Select all
Series1.AreaLinesPen.Visible:=False;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Mapping of Edit Chart GUI with object properties
Many thanks Yeray