Reputation: 305
I dont want the X and Y axis line on the jqplot. something like this
how should i achieve this.
I tried various options of jqplot like showGrid: false etc... nothing works
Upvotes: 5
Views: 3029
Reputation: 554
Try this options:
axesDefaults: {
rendererOptions: {
baselineWidth: 1.5,
drawBaseline: false
}
},
grid: {
drawBorder: false,
borderWidth:0,
shadow:false
},
xaxis: {
drawMajorGridlines: false
}
Upvotes: 7