将工具箱中的chart控件拖到窗体中 选中chart控件,在属性中找到Series 修改名字和选择图表类型
ChartType设置图表是折线图、还是柱状图等 后台绑定数据
private void BindData()
{
List
<int> x
= new List<int>();
List
<int> y
= new List<int>();
Random ran
=new Random();
for (int i
= 0; i
< 10; i
++)
{
x
.Add(i
);
y
.Add(ran
.Next(1,100));
}
chart1
.Series
["info"].Points
.DataBindXY(x
, y
);
}