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?
Programmatically accessing TSurfaceSeries border
-
- Newbie
- Posts: 36
- Joined: Wed Aug 24, 2016 12:00 am
Re: Programmatically accessing TSurfaceSeries border
Hello Sharpenski,
To enable/unenable the TSurfaceSeries Border you should change the value of Pen property. The code below shows you how:
Hoping this helps you.
Thanks in advance
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;
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 |
Instructions - How to post in this forum |