Programmatically accessing TSurfaceSeries border

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Sharpenski
Newbie
Newbie
Posts: 36
Joined: Wed Aug 24, 2016 12:00 am

Programmatically accessing TSurfaceSeries border

Post by Sharpenski » Wed May 31, 2017 12:54 pm

Hi,

I would like to switch the Border's visible value of a TSurfaceSeries programmatically. I can't find the property to access it. Can someone tell me what it is please?

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Programmatically accessing TSurfaceSeries border

Post by Sandra » Wed May 31, 2017 2:36 pm

Hello Sharpenski,

To enable/unenable the TSurfaceSeries Border you should change the value of Pen property. The code below shows you how:

Code: Select all

procedure TForm3.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(10);
Series1.Pen.Visible := false;
end; 
Hoping this helps you.
Thanks in advance
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply