我使用JuliaPro,尝试运行GR的官方范例
https://docs.juliaplots.org/latest/examples/gr/
里面的第五个范例
using Statistics
using Plots
gr()
y = rand(20, 3)
plot(y, xaxis=("XLABEL", (-5, 30), 0:2:20, :flip),background_color=RGB(0.2, 0.2, 0.2), leg=false)
hline!(mean(y, dims=1) + rand(1, 3), line=(4, :dash, 0.6, [:lightgreen :green :darkgreen]))
vline!([5, 10])
title!("TITLE")
yaxis!("YLABEL", :log10)
运行的结果,标题,坐标轴标签等字体都是黑色
作为对照官方范例的字体颜色是白色:
我尝试使用foreground_color_title等参数指定字体颜色,可是问题依旧,不论如何指定图表中的文字颜色都无法改变……求教各位大佬……
Julia版本1.1.1,Plots包的版本是v0.25.1