GRUtils: error bars always behind fill in bar plot

Is it underneath or is it the same color?

Try using different colors:

using GRUtils
y = rand(10)
h = UInt(1)
barplot(string.(1:10).*"a", y, color=0x0000FF)
GRUtils.hold(true)
errorbar(1:10, y, rand(10), "-o", linecolor=0xFF0000)
GRUtils.hold(false)
title("ExamplePlot")

1 Like