Search code examples
javascriptjquerychartsjqplot

How to draw only points with jqplot


For now I am using the LineRenderer but I actually need the points, I would like to avoid having the lines in between. Is there a Renderer for that? I tried lineWidth: 0 but the line it still there.

Thanks for your help.


Solution

  • Set showLine to false

    seriesDefaults: {    
                    showLine:false, 
                    },
    

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