Since errorbar does not take marker option, in order to make a plot the documentation recommend something like:
errorbars!(xs, ys, higherrors, color = :red) # same low and high error
# plot position scatters so low and high errors can be discriminated
scatter!(xs, ys, markersize = 3, color = :black)
However, if you then try to have legend for this item, it looks like:
You can now use legend overrides for this, although there’s still a bug with label merging in this case I think, where it doesn’t associate the same label with different overrides applied
Yes merge=true just merges what it has, doesn’t change how entries look.
I also use rangebars/errorbars quite often (not as often as @jling probably ), at some point was looking into the code trying to find how to fix legend entries for them. But didn’t really manage to do that. Maybe @jling will have more luck?..