I’m trying to rotate the xtick labels using Plots.jl
I have tried
fo = font(10, "Courier")
fo.rotation = 90
plot(randn(10), xtickfont=fo) # Does nothing
plot(randn(10), rotation = 90) # Rotates also ytick labels which I do not want.
Any idea how to rotate only xtickfont
?