Mapping of Edit Chart GUI with object properties

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Markus46
Newbie
Newbie
Posts: 15
Joined: Thu Sep 20, 2018 12:00 am

Mapping of Edit Chart GUI with object properties

Post by Markus46 » Wed Nov 28, 2018 2:22 am

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
Attachments
InternalGridLines.jpg
InternalGridLines.jpg (88.7 KiB) Viewed 8134 times

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Mapping of Edit Chart GUI with object properties

Post by Yeray » Wed Nov 28, 2018 7:48 am

Hello Mark,

You are looking for the AreaLinesPen property:

Code: Select all

  Series1.AreaLinesPen.Visible:=False;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Markus46
Newbie
Newbie
Posts: 15
Joined: Thu Sep 20, 2018 12:00 am

Re: Mapping of Edit Chart GUI with object properties

Post by Markus46 » Thu Nov 29, 2018 12:04 am

Many thanks Yeray

Post Reply