我有
List<DataPoint> p = new List<DataPoint>();
p.Add(new DataPoint(1, 4));
p.Add(new DataPoint(2, 8));除了使用循环将此列表分配给series.Points之外,还有其他方法吗??
发布于 2014-03-27 08:33:37
看一下Series.Points.DataBindXY方法。
不幸的是,这个方法可能看起来不方便,因为它的参数是非泛型IEnumerable。
https://stackoverflow.com/questions/22675882
复制相似问题