private void AddChart(List<double> x, List<double> y,int index)
{
Chart.BeginUpdate();
for (int i = 0; i < 20; i++)
{
XYDataSeries ds = new XYDataSeries();//数据源类型
ds.XValuesSource = x;
ds.ValuesSource = y;
ds.RenderMode = RenderMode.Bitmap;
ds.Label = name[index];
Chart.Data.Children.Add(ds);
}
Chart.EndUpdate();
}
这段代码会导致程序出现未处理的错误 值不在预期的范围内
|
|