wrong legend symbols when using handles and labels from get_legend_handles_labels
- Lenguaje dominante
- Julia
- Estrellas
- 488
- Forks
- 90
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Hello, when I try to use `get_legend_handles_labels` and use these handles and labels in the legend, I get wrong results for `errobar` plots with actual errors.
this works fine:
```julia
errorbar([1],[2],label = "no error")
errorbar([2],[2],[3],label = "with error")
legend()
```

while this one produces a wrong result:
```julia
errorbar([1],[2],label = "no error")
errorbar([2],[2],[3],label = "with error")
h, l = gca()[:get_legend_handles_labels]()
legend(h,l)
```

I cannot tell you where the problem lies but I hope this can be fixed or there is a workaround... Thanks.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.