I have

Chart1["Series1"]
Chart1["Series2"] ....

It has multiple Series and each series has Several Data points.

I want to find the count ( not sum but number of datapoints ) of Data points in all the series using LINQ.

Currently i do

var count = from s in Chart1.Series
            select new int[] { s.Points.Count };

And then for each thorough count and find the sum. Is there a better way to do this

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Try this:

var total = Chart1.Series.Sum(s => s.Points.Count);
link|improve this answer
Works nicely. Thanks a lot – Quantbuff Mar 11 '11 at 15:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.