From 3136c8f9990f7112263f4a678e63b8968c3de783 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Mon, 31 Aug 2020 19:21:42 +0200 Subject: [PATCH] add new test example --- src/examples.jl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/examples.jl b/src/examples.jl index 88ee8c9c..463d0387 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -1024,6 +1024,21 @@ const _examples = PlotExample[ ), ], ), + PlotExample( + "Vectors of markershapes and segments", + "", + [quote + yv = ones(9) + ys = [1; 1; NaN; ones(6)] + plot( + 5 .- [yv 2ys 3yv 4ys], + seriestype = [:path :path :scatter :scatter], + markershape = [:utriangle, :rect], + markersize = 8, + color = [:red, :black], + ) + end] + ), ] # Some constants for PlotDocs and PlotReferenceImages