VB 实例 使用数据库 根据 XML 文件显示饼图
vb 实例 使用数据库 根据 xml 文件显示饼图
@imports system.data
@code
dim dataset = new dataset()
dataset.readxmlschema(server.mappath("data.xsd"))
dataset.readxml(server.mappath("data.xml"))
dim dataview = new dataview(dataset.tables(0))
dim mychart = new chart(600,400)
mychart.addtitle("sales per employee")
mychart.addseries("default","pie",,,,,dataview,"name",dataview,"sales")
mychart.write()
end code
相关文章
- ASP.NET Web Pages WebGrid
- ASP.NET Web Pages Email
- ASP.NET MVC 参考手册
- ASP.NET Web 页面
- ASP.NET 服务器控件
- ASP.NET 数据库连接
- ASP.NET RequiredFieldValidator 控件
- ASP.NET AdRotator 控件
- WebSecurity CurrentUserId 属性
- WebSecurity ChangePassword 方法
- WebSecurity IsCurrentUser 方法
- WebSecurity Login 方法
- HTML Image 2
- HTML Table
- ASP.NET HTML 控件 Button 2
- ASP.NET HTML 控件 CheckboxList
- ASP.NET HTML 控件 用 重复
- ASP.NET HTML 控件 xml
- C# 实例 Array 数组
- C# 实例 If Else 条件