From 6d4f4568261fc8401cde709addaafbe9a64d8c0d Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Wed, 18 Oct 2017 21:06:37 +0200 Subject: [PATCH] fix framestyle testexample --- src/examples.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples.jl b/src/examples.jl index 6d1f1589..3e4868b6 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -346,10 +346,10 @@ PlotExample("Magic grid argument", PlotExample("Framestyle", "The style of the frame/axes of a (sub)plot can be changed with the `framestyle` attribute. The default framestyle is `:axes`.", [:(begin - scatter(fill(randn(10), 7), fill(randn(10), 7), + 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:7), layout = 7, label = "", markerstrokewidth = 0) + color = RowVector(1:6), layout = 6, label = "", markerstrokewidth = 0) end)] ),