C# 實(shí)例 使用 Chart 幫助器 根據(jù) XML 文件顯示餅圖
c# 實(shí)例 使用 chart 幫助器 根據(jù) xml 文件顯示餅圖
@using system.data;
@{
var dataset = new dataset();
dataset.readxmlschema(server.mappath("data.xsd"));
dataset.readxml(server.mappath("data.xml"));
var dataview = new dataview(dataset.tables[0]);
var mychart = new chart(width: 600, height: 400)
.addtitle("sales per employee")
.addseries("default", charttype: "pie",
xvalue: dataview, xfield: "name",
yvalues: dataview, yfields: "sales")
.write();
}
相關(guān)文章
- ASP.NET Web Pages 圖表
- ASP.NET Web Pages PHP
- ASP.NET Razor 標(biāo)記
- ASP.NET 數(shù)據(jù)綁定
- ASP.NET Web 服務(wù)器控件
- ASP.NET RadioButtonList 控件
- WebSecurity CurrentUserId 屬性
- WebSecurity ConfirmAccount 方法
- WebSecurity GetCreateDate 方法
- WebSecurity RequireUser 方法
- HTML Button
- HTML InputCheckbox
- HTML Table 2
- Button
- ASP.NET HTML 控件 Calendar 2
- RadiobuttonList
- ASP.NET HTML 控件 Validationsummary
- 基本的 HTML 表單
- C# 實(shí)例 While 循環(huán)
- C# 實(shí)例 Array 數(shù)組