Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to have only point in JqPlot rather than line

Tags:

charts

jqplot

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.

like image 228
Tejas Patel Avatar asked Mar 14 '13 21:03

Tejas Patel


1 Answers

Set showLine to false

seriesDefaults: {    
                  showLine:false
                }

showLine property is used ,whether to render the line segments or not

REFERENCE

like image 128
Nandu Avatar answered Sep 22 '22 18:09

Nandu