怎样实现Chart控件连接数据库,导出统计图?
使用Chart控件连接SQLSERVER数据库,然后使用数据库中一个表的几个字段分别赋值给XY轴,导出统计图,有知道的告诉我,谢谢!(希望有代码示例) --------------------编程问答-------------------- 是神马chart?MsChart? --------------------编程问答--------------------
--------------------编程问答-------------------- http://topic.csdn.net/u/20100929/21/e7f53acd-1405-4a6e-8d23-7e89d97b2ae6.html --------------------编程问答-------------------- http://www.cnblogs.com/cameo/archive/2007/02/09/646292.html
SqlCommand cd = new SqlCommand(strSql, conn);
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = cd;
DataSet ds = new DataSet();
da.Fill(ds, "log");
DataView dv = new DataView(ds.Tables[0]);
dv.Sort="empid";
Chart1.Series["login"].Points.DataBindXY(dv, "empid", dv, "lNum");
补充:.NET技术 , ASP.NET