We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ac3e36 commit a5a2252Copy full SHA for a5a2252
packages/python/plotly/plotly/express/_imshow.py
@@ -283,10 +283,10 @@ def imshow(
283
labels["x"] = x_label
284
if labels.get("y", None) is None:
285
labels["y"] = y_label
286
- if labels.get("animation", None) is None:
287
- labels["animation"] = animation_label
288
- if labels.get("facet", None) is None:
289
- labels["facet"] = facet_label
+ if labels.get("animation_frame", None) is None:
+ labels["animation_frame"] = animation_label
+ if labels.get("facet_col", None) is None:
+ labels["facet_col"] = facet_label
290
if labels.get("color", None) is None:
291
labels["color"] = xarray.plot.utils.label_from_attrs(img)
292
labels["color"] = labels["color"].replace("\n", "<br>")
0 commit comments