我正在尝试使用jQuery在mvc中生成折线图..
这是我的控制器代码:
.subscribe(function(location) {
//this != this from outer context
console.log(this.message); //prints 'undefined'
});
.subscribe((location) => {
//this == this from the outer context
console.log(this.message); //prints 'success'
});
直到这里一切都很好..现在我的问题就是如何在我看来生成折线图来处理这个jsondata。我想要一个在jquery中使用ajax-call的示例........
答案 0 :(得分:1)
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('visualization', '1', {packages: ['corechart']});
</script>
将此脚本添加到您的页面。然后绘制图表
答案 1 :(得分:0)
This是ASP.NET MVC中的折线图以及纯JavaScript和ASP.NET等其他技术的一个很好的例子。