如何用jqplot只画点

时间:2013-01-28 10:06:01

标签: javascript jquery charts jqplot

现在我正在使用LineRenderer但我实际上需要这些点,我想避免在它们之间插入线条。有渲染器吗?我尝试了lineWidth:0,但它仍然在那里。

感谢您的帮助。

2 个答案:

答案 0 :(得分:3)

showLine设为false

seriesDefaults: {    
                showLine:false, 
                },
使用

showLine属性,是否呈现线段

答案 1 :(得分:0)

您可以自定义您的情节

df['c'], df['d'] = zip(*df.apply(calculate, axis=1))
>>> df
       name  a  b   c   d
0      greg  1  1  11  21
1    george  2  2  12  22
2     giles  3  3  13  23
3  giovanni  4  5  14  25

此处有更多例子:JQplot examples page