From 9f2ba09fc458b501eea2e10e046b9dcf10ad92b1 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Wed, 9 Nov 2016 17:08:28 -0500 Subject: [PATCH] fix colors example --- src/examples.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples.jl b/src/examples.jl index cb1fef93..96872851 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -40,7 +40,7 @@ PlotExample("Colors", "Access predefined palettes (or build your own with the `colorscheme` method). Line/marker colors are auto-generated from the plot's palette, unless overridden. Set the `z` argument to turn on series gradients.", [:(begin y = rand(100) - plot(0:10:100,rand(11,4),lab="lines",w=3,palette=:grays,fill=(0,:auto), α=0.6) + plot(0:10:100,rand(11,4),lab="lines",w=3,palette=:grays,fill=0, α=0.6) scatter!(y, zcolor=abs(y-.5), m=(:heat,0.8,stroke(1,:green)), ms=10*abs(y-0.5)+4, lab="grad") end)] ),