diff --git a/src/examples.jl b/src/examples.jl index c834be44..cfc76074 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -1138,6 +1138,30 @@ const _examples = PlotExample[ ), ], ), + PlotExample( # 54 + "Guide positions and alignment", + "", + [ + :( + begin + plot( + rand(10, 4), + layout=4, + xguide="x guide", + yguide="y guide", + xguidefonthalign=[:left :right :right :left], + yguidefontvalign=[:top :bottom :bottom :top], + xguideposition=:top, + yguideposition=[:right :left :right :left], + ymirror=[false true true false], + xmirror=[false false true true], + legend=false, + seriestype=[:bar :scatter :path :stepmid] + ) + end + ), + ], + ), ] # Some constants for PlotDocs and PlotReferenceImages