From bcd5d9ef9087cbf9577ce5ff4710b5e56f750045 Mon Sep 17 00:00:00 2001 From: Sebastian Pech Date: Sun, 22 Jan 2017 16:57:28 +0100 Subject: [PATCH] Fix issue where every series is plotted with a fillcolor --- src/backends/pgfplots.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pgfplots.jl b/src/backends/pgfplots.jl index a1548b5e..754ebaa0 100644 --- a/src/backends/pgfplots.jl +++ b/src/backends/pgfplots.jl @@ -147,7 +147,7 @@ function pgf_series(sp::Subplot, series::Series) push!(style, pgf_linestyle(d)) push!(style, pgf_marker(d)) - if d[:fillcolor] != nothing + if d[:fillrange] != nothing || st in (:shape,) push!(style, pgf_fillstyle(d)) end