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 13342fd commit a05ca0eCopy full SHA for a05ca0e
plotly_resampler/figure_resampler/figure_resampler_interface.py
@@ -399,7 +399,8 @@ def _check_update_figure_dict(
399
# the x-anchor of the trace is stored in the layout data
400
if trace.get("yaxis") is None:
401
# no yaxis -> we make the assumption that yaxis = xaxis_filter_short
402
- y_axis = "y" + xaxis_filter[1:]
+ # TODO -> why did we make this assumption
403
+ y_axis = "y" # + xaxis_filter[1:]
404
else:
405
y_axis = "yaxis" + trace.get("yaxis")[1:]
406
0 commit comments