I would like to make some plots where the y axis is not shown. I can do this by setting yshowaxis=false
, but there is then ugly excess padding on the left of the figure.
For example:
using Plots
y=[1,1000000]
plot(y,yshowaxis=false,yticks=[0,1000000])
It seems that the axis is being created and then made invisible, rather than the plot area being calculated correctly in the first instance. Is there any workaround to this behaviour?