From 7ffd1fc9c208fc53dba10d46df941b11a6aa6f98 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Wed, 18 Oct 2017 21:24:28 +0200 Subject: [PATCH] some further improvements for framestyle and group testexamples --- src/examples.jl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/examples.jl b/src/examples.jl index 3e4868b6..b3ac5f6b 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -263,7 +263,7 @@ PlotExample("Groups and Subplots", [:(begin group = rand(map(i->"group $i",1:4),100) plot(rand(100), layout=@layout([a b;c]), group=group, - linetype=[:bar :scatter :steppre], linewidth = [0 0 1]) + linetype=[:bar :scatter :steppre], linecolor = :match) end)] ), @@ -349,7 +349,8 @@ PlotExample("Framestyle", scatter(fill(randn(10), 6), fill(randn(10), 6), framestyle = [:box :semi :origin :zerolines :grid :none], title = [":box" ":semi" ":origin" ":zerolines" ":grid" ":none"], - color = RowVector(1:6), layout = 6, label = "", markerstrokewidth = 0) + color = RowVector(1:6), layout = 6, label = "", markerstrokewidth = 0, + ticks = -2:2) end)] ),