How to have only a dot in JqPlot, not a string

I am new to JqPlot. Is it possible to build only points without connecting them. Since I do not want this to be a line chart. I just need scattered points on the chart.

+5
source share
1 answer

Set showLinetofalse

seriesDefaults: {    
                  showLine:false
                }

showLine property is used to display line segments or not

LINK

+7
source

All Articles