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

相关文章