You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i presume this has to do with the switch from svg to webgl after 1000 data points, and if I add render_mode=svg, it works properly, but that isn't an ideal solution for graphs where we will have much more than 1000 data points.
it has something to do with large numeric values on the x-axis because if I normalize the timestamps against the epoch by subtracting 1690330000000 from the x-values:
# x = np.random.randint(1690332167190, 1690332667190, size=size)
x = np.random.randint(2167190, 2667190, size=size)
I believe this issue is similar to plotly/plotly_express#145 .
I am using plotly 5.15.0 in jupyter lab 3.6.3.
My browsers (have tried firefox and chrome) support webgl.
When I render a scatter plot where the x-axis values are datetime objects,
if the plot has 1000 points, it renders fine:
but if I change size to 1001, the render only shows a few clusters of values on the x-axis:
the hover/mouseover behavior makes it clear that there are a bunch of points that exist in the spaces between what is plotted on the graph:
but the individual points don't render (or are rendered with the wrong x-value, not sure which).
The text was updated successfully, but these errors were encountered: