fix marker example

This commit is contained in:
Simon Christ 2021-05-14 21:40:35 +02:00
parent a3fde0ddcb
commit 167480c2a8

View File

@ -7,7 +7,7 @@ mutable struct PlotExample
exprs::Vector{Expr} exprs::Vector{Expr}
end end
# the _examples we'll run for each # the _examples we'll run for each backend
const _examples = PlotExample[ const _examples = PlotExample[
PlotExample( # 1 PlotExample( # 1
"Lines", "Lines",
@ -241,14 +241,15 @@ const _examples = PlotExample[
m -> m in Plots.supported_markers(), m -> m in Plots.supported_markers(),
Plots._shape_keys, Plots._shape_keys,
) )
markers = reshape(markers, 1, length(markers)) markers = permutedims(markers)
n = length(markers) n = length(markers)
x = range(0, stop = 10, length = n + 2)[2:(end - 1)] x = range(0, stop = 10, length = n + 2)[2:(end - 1)]
y = repeat(reshape(reverse(x), 1, :), n, 1) y = repeat(reshape(reverse(x), 1, :), n, 1)
scatter( scatter(
x, x,
y, y,
m = (8, :auto), m = markers,
markersize = 8,
lab = map(string, markers), lab = map(string, markers),
bg = :linen, bg = :linen,
xlim = (0, 10), xlim = (0, 10),