I am a newbie for JqPlot. Is it possible to plot only points without connecting them. As I don't want it to be a line chart. I just want scattered points on the graph.
Asked
Active
Viewed 1,566 times
1 Answers
7
Set showLine
to false
seriesDefaults: {
showLine:false
}
showLine
property is used ,whether to render the line segments or not

Nandu
- 3,076
- 8
- 34
- 51
-
If you have more than one serie and want not to show line only for one of them you have to specify showLine: false to this particular serie and not to the seriesDefaults elements. [See here](http://www.jqplot.com/tests/line-charts.php) : in the last example, only the second serie (the orange one) has his line not shown. – AnthonyLeGovic Mar 15 '13 at 07:56