0

JQPlot を使用して、日付を含むグラフを描画しようとしています。しかし、グラフを描くことはできませんが、サンプルアプリケーションを試してみましたが、うまくいきました。しかし、配列を渡すたびに機能しません。誰かが私が間違っていることを助けてもらえますか? 以下は私が使用しているコードです。

$.get("${contextPath}/qos/graphJQPlot", $("#qosForm").serialize()).done(function(content) {
        $.each(content, function (index1, value1) {
            var innerArray = [];
            $.each(value1, function (index2, value2) {
                innerArray.push(value2, index2);
                console.log(index2);
                console.log(value2);
            })
            outerArray.push(innerArray);
        })

        var line1=[['2008-09-30 4:00PM',4], ['2008-10-30 4:00PM',6.5], ['2008-11-30 4:00PM',5.7], ['2008-12-30 4:00PM',9], ['2009-01-30 4:00PM',8.2]];
        var plot3 = $.jqplot('chartdiv', [outerArray],
                  {
                    title:'Line Style Options',
                    axes:{
                        xaxis:{
                          renderer:$.jqplot.DateAxisRenderer, 
                          tickOptions:{formatString:'%b %#d, %y'}/* ,
                          min:'2013-09-14',
                          max:'2013-09-21',
                          tickInterval:'1 day' */
                          /* ,
                          tickOptions:{formatString:'%b %#d, %Y'},

                           */
                        }
                      }
                  }
                );
    });

line1 を jqPlot に一時停止すると正常に動作しますが、outerArray を渡すと動作しません。

4

1 に答える 1