Julia 如何在Plots.jl中旋转字体

Julia 如何在Plots.jl中旋转字体,julia,plots.jl,Julia,Plots.jl,如何旋转Julia plotting package Plots.jl中的xlabel或ylabel字体 fo = font(10, "Courier") fo.rotation = 90 plot(randn(10), xtickfont=fo) # Does nothing 用于旋转字体的关键字参数为 plot(..., xrotation = 45) # For 45 degree rotation plot(..., yrotation = 45) plot(..., rotatio

如何旋转Julia plotting package Plots.jl中的
xlabel
ylabel
字体

fo = font(10, "Courier")
fo.rotation = 90
plot(randn(10), xtickfont=fo) # Does nothing

用于旋转字体的关键字参数为

plot(..., xrotation = 45) # For 45 degree rotation
plot(..., yrotation = 45)
plot(...,  rotation = 45) # Rotates both x and y fonts
更多属性在