I am trying to find a way to remove the gridlines and the axes in bqplot (jupyter notebook).
I have tried the lines:
ax_x = Axis(scale=x_ord)
ax_y = Axis(scale=y_sc)
ax_x.grid_lines = 'none'
fig = bplt.figure(axes=[ax_x, ax_y])
Yet it doesn't seem to work. Can anybody suggest something that works?
I've watched a video that guided me, this is how I went about it: