Plotly skips multiple points if the value on x axis is same

I am making a scatter plot with Date on x-axis and Release on y-axis like a Roadmap. Please refer to uploaded image to get an idea.

my problem is, I have some multiple releases on the same date which are not visible on the graph, the points get plotted but they collide on each other due to which the hover over values of just one point is visible. What can I do in this situation,

TIA :slight_smile:

You could use jitter=0.8 for example via px.strip see Strip Charts | Python | Plotly

1 Like

Thankyou, that makes sense! But it seems I can’t use the β€œtext” attribute with px.strip. Any solution for that?