-1

誰かがhttp://www.jqplot.com/tests/axisLabelTests.phpで私を助けることができますか

写真に3つの軸を挿入する必要がありますが、方法がわかりません。

4

1 に答える 1

0

次のリンク [jqPlot documentation] で、必要なものの例を見つけることができます。

- 最初の例

- 2 番目の例

最後に、Axis のドキュメントはこちら

編集元の投稿に添付されたコメントによると、次のようなことができます(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.

PSここここでjqPlotの例を見る必要があると思います

于 2013-08-08T15:08:18.803 に答える