Skip to content

Commit a05ca0e

Browse files
committed
💨 add fix for #137
1 parent 13342fd commit a05ca0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plotly_resampler/figure_resampler/figure_resampler_interface.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,8 @@ def _check_update_figure_dict(
399399
# the x-anchor of the trace is stored in the layout data
400400
if trace.get("yaxis") is None:
401401
# no yaxis -> we make the assumption that yaxis = xaxis_filter_short
402-
y_axis = "y" + xaxis_filter[1:]
402+
# TODO -> why did we make this assumption
403+
y_axis = "y" # + xaxis_filter[1:]
403404
else:
404405
y_axis = "yaxis" + trace.get("yaxis")[1:]
405406

0 commit comments

Comments
 (0)