摘要:
1.首先要拖拽一个Chart控件到设计区,在代码编写区加上引用命名空间using Dundas.Charting.WebControl; 2.每个Chart分为ChartArea区域,Sieres,Legend,Axis几个部分,都可以设置相应的属性,可以在属性编辑框中修改,也可以通过修改代码来实现; 3.绑定数据部分,可以通过Points.DataBindXY(X[],y[]);代码using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; . 阅读全文