Posted 29 May 2012 Link to this post
ObservableCollection<
dynamic
> cases
mapping.ItemsSource = cases ;
mapping.ItemMappings.Add(new ItemMapping(this.YValue, DataPointMember.YValue));
IEnumerable<
> callStats = (from c in ipCases
group c by c.Year into d
select new
{
Year = Convert.ToInt32(d.Key.ToString()),
CaseCounts = d.Sum(x => x.CaseCount)
} as dynamic);
Posted 01 Jun 2012 Link to this post
public
class
HelperType
int
Year {
get
;
set
; }
CaseCounts {
}
IEnumerable<dynamic> callStats = (from c
in
ipCases
select
new
});
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>