Skip to content

Commit

Permalink
add new test example
Browse files Browse the repository at this point in the history
  • Loading branch information
daschw committed Aug 31, 2020
1 parent 0b91d51 commit 3136c8f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/examples.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3136c8f

Please sign in to comment.