如何生成折线图

时间:2016-01-07 04:45:18

标签: jquery arrays linechart

我正在尝试使用jQuery在mvc中生成折线图..

这是我的控制器代码:

.subscribe(function(location) {
        //this != this from outer context 
        console.log(this.message); //prints 'undefined'
    });
在“finalJsonData”中,数据就像

.subscribe((location) => { //this == this from the outer context console.log(this.message); //prints 'success' });

直到这里一切都很好..现在我的问题就是如何在我看来生成折线图来处理这个jsondata。我想要一个在jquery中使用ajax-call的示例........

2 个答案:

答案 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等其他技术的一个很好的例子。