Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经实施了计量表,它工作正常。我想在同一个仪表上有多个针。那可能吗?
例如:如果我们有
s1 = [122,80]; or s1 = [122,80];s2 = [200];
在这种情况下,我们可以在同一个仪表上获得多根针。
简而言之,没有。像你一样,我尝试了很多事情,但该系列的正常方法是:
s1 = [122];s2 = [200]; series = [s1, s2]; plot = $.jqplot('chart',series,{ ... });
...但这显然行不通。而且我在文档中也找不到这样的东西。我希望它也可以在未来的版本中使用。