当前位置:编程学习 > C#/ASP.NET >>

怎样实现Chart控件连接数据库,导出统计图?

使用Chart控件连接SQLSERVER数据库,然后使用数据库中一个表的几个字段分别赋值给XY轴,导出统计图,有知道的告诉我,谢谢!(希望有代码示例) --------------------编程问答-------------------- 是神马chart?
MsChart? --------------------编程问答--------------------

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");
--------------------编程问答-------------------- http://topic.csdn.net/u/20100929/21/e7f53acd-1405-4a6e-8d23-7e89d97b2ae6.html --------------------编程问答-------------------- http://www.cnblogs.com/cameo/archive/2007/02/09/646292.html
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,