我正在创建一个 MVC ASP.NET 项目并使用 Shield UI MVC 图表。我添加了对我下载的试用包的引用,并插入了在线提供的示例演示代码:https ://demos.shieldui.com/mvc/pie-chart/basic-usage
@(Html.ShieldChart()
.Name("chart")
.Theme(Response.Cookies.Theme())
.Export(false)
.PrimaryHeader(header => header.Text("Browsers Popularity amongst Users"))
.ChartLegend(legend=>legend.Enabled(true))
.SeriesSettings(setting=>setting.Pie(pie=>pie
.EnablePointSelection(true)))
.Tooltip(tooltip=>tooltip.CustomPointText("{point.collectionAlias}: {point.y}"))
.DataSeries(dataSeries => dataSeries.Pie()
.CollectionAlias("Usage")
.Data(new object[]
{
new object[] {"Firefox", 44.2},
new object[] {"IE7", 26.6},
new object[] {"IE6", 20},
new object[] {"Chrome", 3.1},
new object[] {"Other", 5.4}
}))
) 只有声明:
.Theme(Response.Cookies.Theme())
调用了一个错误,但我删除了该行,因为我需要先开始。
由于我对 MVC 很陌生,所以我不知道可以在哪里放置以下代码行:
<head >
<link rel="stylesheet" type="text/css" href="css/shieldchart.css" />
<script src="js/jquery-1.9.1.min.js" type="text/javascript">//</script>
<script src="js/shield-chart.all.min.js" type="text/javascript">//</script>
</head>
因为我找不到合适的地方。我在项目中有 Index.cshtml 和 About.cshtm 文件,但是没有可以放置线条的元素……</p>