From 2a1d9fc74a6f70f500902f901fe237fe160f6950 Mon Sep 17 00:00:00 2001 From: Lukas_Krumwiede Date: Tue, 17 Aug 2021 13:04:28 +0200 Subject: [PATCH] fixed filledcurve with solid borders --- src/backends/gaston.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backends/gaston.jl b/src/backends/gaston.jl index b5396374..69de0c26 100644 --- a/src/backends/gaston.jl +++ b/src/backends/gaston.jl @@ -308,7 +308,8 @@ function gaston_seriesconf!( fc = gaston_color(get_fillcolor(series, i), get_fillalpha(series, i)) lc, dt, lw = gaston_lc_ls_lw(series, clims, i) if fr !== nothing # filled curves, but not filled curves with markers - push!(curveconf, "w filledcurves fc $fc fs solid border lc $lc lw $lw dt $dt") + push!(curveconf, "w filledcurves y=$fr fc $fc fs solid border lc $lc lw $lw dt $dt,'' w lines lc $lc lw $lw dt $dt") + #push!(curveconf, "w lines lc $lc lw $lw dt $dt") elseif series[:markershape] == :none # simplepath push!(curveconf, "w lines lc $lc dt $dt lw $lw") else