誰かがhttp://www.jqplot.com/tests/axisLabelTests.phpで私を助けることができますか
写真に3つの軸を挿入する必要がありますが、方法がわかりません。
誰かがhttp://www.jqplot.com/tests/axisLabelTests.phpで私を助けることができますか
写真に3つの軸を挿入する必要がありますが、方法がわかりません。
次のリンク [jqPlot documentation] で、必要なものの例を見つけることができます。
編集元の投稿に添付されたコメントによると、次のようなことができます(jsFiddle リンク) :
//Declare a first series
var cosPoints = [...];
//Declare a second one
var cosPoints2 = [...];
//Draw a new plot with those two series
$.jqplot('chart1', [cosPoints,cosPoints2], {});
//You will obtain a graph with two lines representing your two series.