We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc9c5fd + a810a95 commit da6c2f2Copy full SHA for da6c2f2
packages/python/plotly/plotly/__init__.py
@@ -158,7 +158,7 @@ def hist_frame(data_frame, **kwargs):
158
from .express import histogram
159
160
skip = ["column", "by", "grid", "xlabelsize", "xrot", "ylabelsize", "yrot"]
161
- skip += ["ax", "sharex", "sharey", "figsize", "layout", "bins"]
+ skip += ["ax", "sharex", "sharey", "figsize", "layout", "bins", "legend"]
162
new_kwargs = {k: kwargs[k] for k in kwargs if k not in skip}
163
return histogram(data_frame, **new_kwargs)
164
@@ -172,6 +172,6 @@ def hist_series(data_frame, **kwargs):
172
173
174
skip = ["by", "grid", "xlabelsize", "xrot", "ylabelsize", "yrot", "ax"]
175
- skip += ["figsize", "bins"]
+ skip += ["figsize", "bins", "legend"]
176
177
0 commit comments