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 cc7e200 commit c2860deCopy full SHA for c2860de
packages/python/plotly/plotly/basedatatypes.py
@@ -4053,7 +4053,7 @@ def _process_multiple_axis_spanning_shapes(
4053
row=row,
4054
col=col,
4055
exclude_empty_subplots=exclude_empty_subplots,
4056
- yref=shape_kwargs["yref"],
+ yref=shape_kwargs["yref"] if "yref" in shape_kwargs.keys() else "y",
4057
)
4058
# update xref and yref for the new shapes and annotations
4059
for layout_obj, n_layout_objs_before in zip(
0 commit comments