Page 1 of 1

Mapping of Edit Chart GUI with object properties

Posted: Wed Nov 28, 2018 2:22 am
by 16584505
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

Re: Mapping of Edit Chart GUI with object properties

Posted: Wed Nov 28, 2018 7:48 am
by yeray
Hello Mark,

You are looking for the AreaLinesPen property:

Code: Select all

  Series1.AreaLinesPen.Visible:=False;

Re: Mapping of Edit Chart GUI with object properties

Posted: Thu Nov 29, 2018 12:04 am
by 16584505
Many thanks Yeray