如何在Julia plotting Plots.jl中旋转xlabel或ylabel的字体?
fo = font(10, "Courier")
fo.rotation = 90
plot(randn(10), xtickfont=fo) # Does nothing发布于 2020-05-21 17:36:36
用于旋转字体的关键字参数为
plot(..., xrotation = 45) # For 45 degree rotation
plot(..., yrotation = 45)
plot(..., rotation = 45) # Rotates both x and y fontshttp://docs.juliaplots.org/latest/attributes/提供了更多属性
https://stackoverflow.com/questions/61931507
复制相似问题