Desktop
WPF
Seamless operation with diverse data sources is paramount for any data visualization solution. RadChart already supports automatic data binding to IEnumerable sources as seen in this example: http://demos.telerik.com/silverlight/#Chart/DataBinding. With the growing of Silverlight data sources and support for various data services, however, a new scenario is becoming more common: data binding to a collection of collections or nested collections. I am glad to announce that a new feature is coming in the Q2 2009 release which will make this automatic. Consider the following code snippet: private void FillWithData() { var list1 = new List<double>() { 1, 3, 5, 7, 9 }; //Odd Numbers var list2 = new List<double>() { 2, 4, 6, 8, 10 }; //Even Numbers ...