您好,我在 Mvc3 Application 中使用图表控件。
控制器代码:
Chart newChart = new Chart(800,600);
newChart.AddSeries(...)
newChart.AddSeries(...)
ViewBag.chart = newChart;
return View();
查看页面
@{ Layout = "~/Shared/_Layout.cshtml"}
@ViewBag.chart.Write()
...
但是,页面只显示图表本身,css不起作用,页面中的内容都丢失了。