-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strip plot does not actually render data points by default #548
Comments
See #554 (comment) |
This appears to be a theming edge case Essentially, a
This is the same case as Alex originally posted, it's just empty
This can of course be overriden, I'll just do it through
But, the problem is, we strip the
@bmingles @mattrunyon what do you think would be the best solution for this? |
@jnumainville Why does |
Because the way they are hidden is through setting the line color to be completely transparent in the trace |
@jnumainville How about setting line width to 0. f.update_traces(line={'color':None,'width': 0}, boxpoints="all") |
I opened plotly/plotly.js#7159 |
PR opened against plotly for this: plotly/plotly.js#7162 |
Create a strip plot with
dx.strip
:The frame of the plot and axis labels will render, but the points themselves do not show up:
If you include a color explicitly:
The plot will show up correctly:
The text was updated successfully, but these errors were encountered: