Search found 2 matches

by Li Kunlun
Thu Mar 12, 2009 1:15 am
Forum: .NET
Topic: Does Teechart support datasource as Generic List<T>?
Replies: 6
Views: 10681

I see.. thanks for your solution, it works. Great! Wish users can set Series.DataSource = (IList) or (List<T>) and set DataMember as a propertyname directly in a future version of TeeChart as my suggestion. It will make much better coding-experiences than write a cycle myself. However, I can use it ...
by Li Kunlun
Wed Mar 11, 2009 8:26 am
Forum: .NET
Topic: Does Teechart support datasource as Generic List<T>?
Replies: 6
Views: 10681

Does Teechart support datasource as Generic List<T>?

I use LinQ2SQL to access database in my project, and most of query results is IQueryable<> or List<>. But it seems Teechart cannot work with such datasource. I don't want to convert my List<> source to DataTable, that takes a horribly long time. Another way, writing an ADO link to get DataTable spec...