-1

有人可以帮助mi http://www.jqplot.com/tests/axisLabelTests.php

我需要在图片上插入三个轴,但我不知道如何。

4

1 回答 1

0

您可以在以下链接 [jqPlot 文档] 中找到您想要的示例:

- 第一个例子

- 第二个例子

最后,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示例herehere

于 2013-08-08T15:08:18.803 回答