Tejas Patel
Tejas Patel

Reputation: 1447

How to have only point in JqPlot rather than line

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.

Upvotes: 5

Views: 1578

Answers (1)

Nandu
Nandu

Reputation: 3126

Set showLine to false

seriesDefaults: {    
                  showLine:false
                }

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

REFERENCE

Upvotes: 7

Related Questions