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 b251fa7 commit a4561a8Copy full SHA for a4561a8
src/mplfinance/plotting.py
@@ -783,8 +783,8 @@ def plot( data, **kwargs ):
783
_addplot_apply_supplements(ax,apdict,xdates)
784
if apdict["label"]: # not supported for aptype == 'ohlc' or 'candle'
785
contains_legend_label.append(ax)
786
- for ax in set(contains_legend_label): # there will be duplicates,
787
- ax.legend() # but its ok to call ax.legend() multiple times
+ for ax in set(contains_legend_label): # there might be duplicates
+ ax.legend()
788
789
# fill_between is NOT supported for external_axes_mode
790
# (caller can easily call ax.fill_between() themselves).
0 commit comments