correct size argument
This commit is contained in:
parent
dcb14a965f
commit
3b8abc7eb0
14
src/utils.jl
14
src/utils.jl
@ -941,7 +941,7 @@ ignorenan_extrema(plt::Plot) = (xmin(plt), xmax(plt))
|
|||||||
|
|
||||||
plottitlefont(p::Plot) = font(;
|
plottitlefont(p::Plot) = font(;
|
||||||
family = p[:plot_titlefontfamily],
|
family = p[:plot_titlefontfamily],
|
||||||
fontsize = p[:plot_titlefontsize],
|
pointsize = p[:plot_titlefontsize],
|
||||||
valign = p[:plot_titlefontvalign],
|
valign = p[:plot_titlefontvalign],
|
||||||
halign = p[:plot_titlefonthalign],
|
halign = p[:plot_titlefonthalign],
|
||||||
rotation = p[:plot_titlefontrotation],
|
rotation = p[:plot_titlefontrotation],
|
||||||
@ -950,7 +950,7 @@ plottitlefont(p::Plot) = font(;
|
|||||||
|
|
||||||
colorbartitlefont(sp::Subplot) = font(;
|
colorbartitlefont(sp::Subplot) = font(;
|
||||||
family = sp[:colorbar_titlefontfamily],
|
family = sp[:colorbar_titlefontfamily],
|
||||||
fontsize = sp[:colorbar_titlefontsize],
|
pointsize = sp[:colorbar_titlefontsize],
|
||||||
valign = sp[:colorbar_titlefontvalign],
|
valign = sp[:colorbar_titlefontvalign],
|
||||||
halign = sp[:colorbar_titlefonthalign],
|
halign = sp[:colorbar_titlefonthalign],
|
||||||
rotation = sp[:colorbar_titlefontrotation],
|
rotation = sp[:colorbar_titlefontrotation],
|
||||||
@ -959,7 +959,7 @@ colorbartitlefont(sp::Subplot) = font(;
|
|||||||
|
|
||||||
titlefont(sp::Subplot) = font(;
|
titlefont(sp::Subplot) = font(;
|
||||||
family = sp[:titlefontfamily],
|
family = sp[:titlefontfamily],
|
||||||
fontsize = sp[:titlefontsize],
|
pointsize = sp[:titlefontsize],
|
||||||
valign = sp[:titlefontvalign],
|
valign = sp[:titlefontvalign],
|
||||||
halign = sp[:titlefonthalign],
|
halign = sp[:titlefonthalign],
|
||||||
rotation = sp[:titlefontrotation],
|
rotation = sp[:titlefontrotation],
|
||||||
@ -968,7 +968,7 @@ titlefont(sp::Subplot) = font(;
|
|||||||
|
|
||||||
legendfont(sp::Subplot) = font(;
|
legendfont(sp::Subplot) = font(;
|
||||||
family = sp[:legendfontfamily],
|
family = sp[:legendfontfamily],
|
||||||
fontsize = sp[:legendfontsize],
|
pointsize = sp[:legendfontsize],
|
||||||
valign = sp[:legendfontvalign],
|
valign = sp[:legendfontvalign],
|
||||||
halign = sp[:legendfonthalign],
|
halign = sp[:legendfonthalign],
|
||||||
rotation = sp[:legendfontrotation],
|
rotation = sp[:legendfontrotation],
|
||||||
@ -977,7 +977,7 @@ legendfont(sp::Subplot) = font(;
|
|||||||
|
|
||||||
legendtitlefont(sp::Subplot) = font(;
|
legendtitlefont(sp::Subplot) = font(;
|
||||||
family = sp[:legendtitlefontfamily],
|
family = sp[:legendtitlefontfamily],
|
||||||
fontsize = sp[:legendtitlefontsize],
|
pointsize = sp[:legendtitlefontsize],
|
||||||
valign = sp[:legendtitlefontvalign],
|
valign = sp[:legendtitlefontvalign],
|
||||||
halign = sp[:legendtitlefonthalign],
|
halign = sp[:legendtitlefonthalign],
|
||||||
rotation = sp[:legendtitlefontrotation],
|
rotation = sp[:legendtitlefontrotation],
|
||||||
@ -986,7 +986,7 @@ legendtitlefont(sp::Subplot) = font(;
|
|||||||
|
|
||||||
tickfont(ax::Axis) = font(;
|
tickfont(ax::Axis) = font(;
|
||||||
family = ax[:tickfontfamily],
|
family = ax[:tickfontfamily],
|
||||||
fontsize = ax[:tickfontsize],
|
pointsize = ax[:tickfontsize],
|
||||||
valign = ax[:tickfontvalign],
|
valign = ax[:tickfontvalign],
|
||||||
halign = ax[:tickfonthalign],
|
halign = ax[:tickfonthalign],
|
||||||
rotation = ax[:tickfontrotation],
|
rotation = ax[:tickfontrotation],
|
||||||
@ -995,7 +995,7 @@ tickfont(ax::Axis) = font(;
|
|||||||
|
|
||||||
guidefont(ax::Axis) = font(;
|
guidefont(ax::Axis) = font(;
|
||||||
family = ax[:guidefontfamily],
|
family = ax[:guidefontfamily],
|
||||||
fontsize = ax[:guidefontsize],
|
pointsize = ax[:guidefontsize],
|
||||||
valign = ax[:guidefontvalign],
|
valign = ax[:guidefontvalign],
|
||||||
halign = ax[:guidefonthalign],
|
halign = ax[:guidefonthalign],
|
||||||
rotation = ax[:guidefontrotation],
|
rotation = ax[:guidefontrotation],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user