I have the following linq code...
| var CVDOverviewData = from cvdo in pieData.CVDOverviews |
| select new |
| { |
| OverTwentyfive = cvdo.OverTwentyfive, |
| OverTwenty = cvdo.OverTwenty, |
| OverFifteen = cvdo.OverFifteen, |
| OverTen = cvdo.OverTen, |
| LessTen = cvdo.LessTen |
| }; |
the result is a sinlge row with a column for each range (over25, over20, over15 ...)
How so I get these values into a pie chart?
Sorry if this is a real newbie question.
Cheers in advance.