fix font calls
This commit is contained in:
parent
7b0677c3cc
commit
c001048ff6
28
src/utils.jl
28
src/utils.jl
@ -982,22 +982,22 @@ titlefont(sp::Subplot) = font(;
|
|||||||
color = sp[:titlefontcolor],
|
color = sp[:titlefontcolor],
|
||||||
)
|
)
|
||||||
|
|
||||||
legendfont(sp::Subplot) = font(
|
legendfont(sp::Subplot) = font(;
|
||||||
sp[:legend_font_family],
|
family = sp[:legend_font_family],
|
||||||
sp[:legend_font_pointsize],
|
pointsize = sp[:legend_font_pointsize],
|
||||||
sp[:legend_font_valign],
|
valign = sp[:legend_font_valign],
|
||||||
sp[:legend_font_halign],
|
halign = sp[:legend_font_halign],
|
||||||
sp[:legend_font_rotation],
|
rotation = sp[:legend_font_rotation],
|
||||||
sp[:legend_font_color],
|
color = sp[:legend_font_color],
|
||||||
)
|
)
|
||||||
|
|
||||||
legendtitlefont(sp::Subplot) = font(
|
legendtitlefont(sp::Subplot) = font(;
|
||||||
sp[:legend_title_font_family],
|
family = sp[:legend_title_font_family],
|
||||||
sp[:legend_title_font_pointsize],
|
pointsize = sp[:legend_title_font_pointsize],
|
||||||
sp[:legend_title_font_valign],
|
valign = sp[:legend_title_font_valign],
|
||||||
sp[:legend_title_font_halign],
|
halign = sp[:legend_title_font_halign],
|
||||||
sp[:legend_title_font_rotation],
|
rotation = sp[:legend_title_font_rotation],
|
||||||
sp[:legend_title_font_color],
|
color = sp[:legend_title_font_color],
|
||||||
)
|
)
|
||||||
|
|
||||||
tickfont(ax::Axis) = font(;
|
tickfont(ax::Axis) = font(;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user