5

I dont want the X and Y axis line on the jqplot. something like thisenter image description here

how should i achieve this.

I tried various options of jqplot like showGrid: false etc... nothing works

user564927
  • 275
  • 1
  • 5
  • 15

1 Answers1

7

Try this options:

axesDefaults: {
    rendererOptions: {
        baselineWidth: 1.5,
        drawBaseline: false
    }
},
grid: {
    drawBorder: false,
    borderWidth:0, 
    shadow:false
},
xaxis: { 
        drawMajorGridlines: false
}
Soulbe
  • 444
  • 8
  • 14