We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b84930 commit a4a8ea7Copy full SHA for a4a8ea7
pandas/plotting/_matplotlib/core.py
@@ -974,6 +974,9 @@ def _plot(
974
kwds["xerr"] = np.array(kwds.get("xerr"))
975
if "yerr" in kwds:
976
kwds["yerr"] = np.array(kwds.get("yerr"))
977
+ # GH 7023 allow setting plot style when using errorbars
978
+ if style is not None:
979
+ kwds["fmt"] = style
980
return ax.errorbar(x, y, **kwds)
981
else:
982
# prevent style kwarg from going to errorbar, where it is unsupported
0 commit comments