I’m trying to combine the errorbar and barplot plots using hold. No matter what order I do this in the error bars always appear under the bar plot fill. Is there any fix for this?
MWE:
using GRUtils
let
y = rand(10)
barplot(string.(1:10).*"a", y)
GRUtils.hold(true)
f = errorbar(1:10, y, rand(10), "-o")
GRUtils.hold(false)
title("ExamplePlot")
end
With a graph that looks like:
I’m trying to get the error bars ontop of the fill, any ideas?