使用 ASP.NET MVC3 具有动态数据的堆叠分组直方图 HighCharts 图表?
我想使用 HighCharts 和 ASP.NET MVC3 制作堆叠和分组直方图。 我在 HighCharts 网站上找到了这个示例: http://www.highcharts.com/ demo/column-stacked-and-grouped
我会在我的控制器中使用 JsonResult。 特别是,在上面的示例中,图形系列是在 javascript 中预定义的,而我将使用 JSON 动态创建它们。
I'd like to make stacked&grouped histograms using HighCharts and ASP.NET MVC3.
I found this example on HighCharts' site: http://www.highcharts.com/demo/column-stacked-and-grouped
I would use JSonResult in my controller.
In particular, in above example, graph series are pre-defined in javascript, while I would dynamically create them with JSON.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DonNet.Highcharts,您可以轻松地仅在服务器端创建 Highcharts。有堆叠和分组列的示例。这是服务器端代码:
您可以根据需要传递数据。
With DonNet.Highcharts you can easily create Highcharts only on the server side. There is example with the stacked and grouped column. Here is the server side code:
You can pass the data as you like.