有人可以帮助mi http://www.jqplot.com/tests/axisLabelTests.php
我需要在图片上插入三个轴,但我不知道如何。
您可以在以下链接 [jqPlot 文档] 中找到您想要的示例:
编辑根据您附加到原始帖子的评论,您可以执行以下操作(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.