Hello,
I need to assign by code the type of points that I want to use in a “TpointSeries” Series. The parameters that I want to access are:
Style of points (Square, Circle, Diagonal Cross…)
And Border (set it to None)
I have tried the following but it doesn’t work:
Series1->Style = psCircle;
Series1->Border = bsNone;
Thanks in advance,
Elisabet
Border and Style of Points in TPointSeries
Border and Style of Points in TPointSeries
Last edited by Elisabet on Fri Jan 19, 2007 12:33 pm, edited 1 time in total.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Elisabet,
You should use Series1->Pointer to achieve what you request:
You should use Series1->Pointer to achieve what you request:
Code: Select all
Series1->Pointer->Style = psCircle;
Series1->Pointer->Pen->Visible = false;
Best Regards,
Narcís Calvet / 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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Elisabet,
In BCB you can make bold fonts like this:
In BCB you can make bold fonts like this:
Code: Select all
Series1->Marks->Font->Style = TFontStyles()<< fsBold;
Best Regards,
Narcís Calvet / 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 |