Hi,
newbie question,
How do I know the series type from Series class? Thanks.
How do I know which series I am working with
Hi.
How about this (using TeeChart .NET)
or if you want to cycle through all series i chart series list:
How about this (using TeeChart .NET)
Code: Select all
Steema.TeeChart.Styles.Series s= tChart1.Series[1]; // second series
Code: Select all
foreach (Steema.TeeChart.Styles.Series s in tChart.Series)
{ s.FillSampleValues(10);
}
Marjan Slatinek,
http://www.steema.com
http://www.steema.com
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi,
Yes, you can use:9234539 wrote:actually, can I get the index of the series in the series
collection?
Code: Select all
tChart1.Series.IndexOf(line1);
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 |