App下载

try_webpages_cs_007 在线工具

try_webpages_cs_007 在线工具

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="/statics/demosource/showrazor.css" />
</head>
<body>
<span class="marked">
@{ 

var db = Database.Open("SmallBakery"); 

var dbdata = db.Query("SELECT Name, Price FROM Product"); 

var myChart = new Chart(width: 600, height: 400) 

&nbsp;&nbsp;.AddTitle(&quot;Product Sales&quot;) 

&nbsp;&nbsp;.AddSeries(chartType: &quot;Pie&quot;,

&nbsp;&nbsp;&nbsp;&nbsp; xValue: dbdata, xField: "Name", 

&nbsp;&nbsp;&nbsp;&nbsp; yValues: dbdata, yFields: "Price&quot;) 

&nbsp;&nbsp;.Write();

}

</span>
</body>
</html>
运行结果