I believe this issue is similar to https://github.com/plotly/plotly_express/issues/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: ``` size = 1000 x = np.random.randint(1690332167190, 1690332667190, size=size) y = np.random.randint(0, 10000, size=size) df = pd.DataFrame() df['x'] = pd.to_datetime(x, unit='ms') df['y'] = y fig = px.scatter(df, x='x', y='y') fig ```  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).