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 5286426 commit 3826dd7Copy full SHA for 3826dd7
plotly_resampler/figure_resampler.py
@@ -293,7 +293,7 @@ def check_update_figure_dict(
293
xaxis_filter_short = "x" + xaxis_filter.lstrip("xaxis")
294
295
if updated_trace_indices is None:
296
- updated_trace_indices = []
+ updated_trace_indices = []
297
298
for idx, trace in enumerate(figure["data"]):
299
# We skip when the trace-idx already has been updated.
@@ -516,7 +516,7 @@ def add_trace(
516
if isinstance(hf_y, pd.Series)
517
else hf_y
518
)
519
- # hf_y = np.asarray(hf_y)
+ hf_y = np.asarray(hf_y)
520
521
# Note: "hovertext" takes precedence over "text"
522
hf_hovertext = (
0 commit comments