Series Count
-
- Newbie
- Posts: 3
- Joined: Mon Oct 02, 2006 12:00 am
Series Count
Could you add Chart.Series.Count ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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: 83
- Joined: Wed Nov 12, 2003 5:00 am
- Location: Girona, Catalonia
- Contact:
In VCL (Delphi) the syntax is:
In C++ Builder:
Chart1.Series.Count cannot be done in VCL as "Series" is an indexed property:
and indexed properties do not allow standalone use.
Code: Select all
var i : Integer;
i := Chart1.SeriesList.Count;
Code: Select all
int i ;
i = Chart1->SeriesList->Count;
Code: Select all
var s : TChartSeries ;
s := Chart1.Series[123];