From 004118956842d303f18dc9d003cde86e907871a8 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Sun, 13 Jun 2021 12:28:27 +0200 Subject: [PATCH] fix fillrange of annotation series for groupedbar --- src/recipes.jl | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/recipes.jl b/src/recipes.jl index e36b93f1..cd1dce43 100644 --- a/src/recipes.jl +++ b/src/recipes.jl @@ -497,7 +497,7 @@ end # switch back if !isvertical(plotattributes) xseg, yseg = yseg, xseg - x, y = y, x + x, y = y, x end # reset orientation @@ -505,19 +505,20 @@ end # draw the bar shapes @series begin - seriestype := :shape - series_annotations := nothing - primary := true - x := xseg.pts - y := yseg.pts - () + seriestype := :shape + series_annotations := nothing + primary := true + x := xseg.pts + y := yseg.pts + () end # add empty series primary := false seriestype := :scatter markersize := 0 - msrkeralpha := 0 + markeralpha := 0 + fillrange := nothing x := x y := y ()