Improper line placement on plot with set_ticks
Atulsingh92 opened this issue · 2 comments
Atulsingh92 commented
Hi,
The column with
Hence I also want [0,1,2,3] in this plot for
I've achieved the above with
paxfig.set_ticks(ax_idx = 6,
ticks = [0, 1, 2],
labels = ['0', '1', '2'])
Could anyone please suggest a way such that zero is at the bottom of the line drawn? and I can get 4 ticks of [0,1,2,3]??
Atulsingh92 commented
Solved it with,
paxfig.set_ticks(ax_idx = 6,
ticks = [0, 1, 2, 3],
labels = ['0', '1', '2', '3'])
paxfig.set_lim(ax_idx=6, bottom=0, top=3)
kravitsjacob commented
I was going to get to this in a few days, you beat me to it, good job!
The fact it didn't do this by default may be a bug... will investigate later!