I need to get all the series points in a double array to save them in a database, but
double myVals[] = highlow.HighValues.Value;
does not work properly, because the Value[] array of the series always seems to be some elements longer than I would expect from Series.Count. If I have to do the copying in a loop, it will be very poor performance (multiple lines, each thousands of points). Is there a way to get the array directly in the right length?
Joachim
series.Count != YValues.Length??
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Joachim,
There's no way to convert a ValueList to an array without using a loop.
There's no way to convert a ValueList to an array without using a loop.
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 |