tick label styling

This commit is contained in:
Simon Christ 2020-03-18 11:40:27 +01:00
parent aa5d514d57
commit e1325f7428

View File

@ -929,6 +929,14 @@ function pgfx_axis!(opt::PGFPlotsX.Options, sp::Subplot, letter)
"opacity" => alpha(tick_color),
),
)
tick_label_color = plot_color(axis[:tickfontcolor])
push!(opt,
"$(letter) tick label style" => PGFPlotsX.Options(
"color" => color(tick_color),
"opacity" => alpha(tick_color),
"rotate" => axis[:rotation]
),
)
# set to supported framestyle
framestyle = pgfx_framestyle(sp[:framestyle] == false ? :none : sp[:framestyle])