我正在尝试使用 Highcharts jQuery 插件在 MVC 应用程序中创建数据图表。但我需要从 Action Method 动态获取函数的数据。我怎样才能做到这一点?
以 Highcharts 网站 ( http://highcharts.com/documentation/how-to-use ) 为例:
var chart1; // globally available
$(document).ready(function() {
chart1 = new Highcharts.Chart({
chart: {
renderTo: 'chart-container-1',
defaultSeriesType: 'bar'
},
title: {
text: 'Fruit Consumption'
},
xAxis: {
categories: ['Apples', 'Bananas', 'Oranges']
},
yAxis: {
title: {
text: 'Fruit eaten'
}
},
series: [{
name: 'Jane',
data: [1, 0, 4]
}, {
name: 'John',
data: [5, 7, 3]
}]
});
});
如何从 action 方法中动态获取数据?有人建议我可能会使用 JSON,但无法具体说明如何使用。如果是这样的话,我真的很感激一个简单而具体的例子,因为我对 JSon 了解不多。
任何帮助表示赞赏!