I'm creating a board game using python and matplotlib. this is my first time using matplotlib and I have learnt from Google.
I was wondering if there was a way to remove these little black lines along my axis (Highlighted in red boxes). Click Here
I have added the grid lines by using:
plt.grid(True)
and i have hidden the axes by using:
frame1 = plt.gca()
frame1.axes.xaxis.set_ticklabels([])
frame1.axes.yaxis.set_ticklabels([])
Any help would be wonderful. Reply to this if you need anymore information
Kind Regards.