如何在循环Oxyplot中添加数据点

时间:2018-04-09 15:53:13

标签: c# wpf loops oxyplot

是否可以在循环中添加数据点?

public partial class Chart: Window
    {
        public IList<DataPoint> W1 { get; set; }

        public Chart(Learn l1)
        {
            int z = Convert.ToInt32(l1.counter);  
            {
                this.W1 = new List<DataPoint>
                            {

我想在那里添加for()循环去思考l1.ww1点并将其包含在W1 oxyplot列表中

                new DataPoint(l1.ww1[i],i),
            };
 }


 InitializeComponent();
    }

0 个答案:

没有答案