Skip to content
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

Empty hovers when using charts and columnCount #86

Closed
nicolaskruchten opened this issue Jul 15, 2017 · 2 comments
Closed

Empty hovers when using charts and columnCount #86

nicolaskruchten opened this issue Jul 15, 2017 · 2 comments

Comments

@nicolaskruchten
Copy link
Contributor

This is an odd bug but consistently, the hover/tooltip appears empty for line charts in the second (or higher) column when using columnCount... Chart b below has empty tooltips. If I add a chart c with the same definition, and bump columnCount to 3 I have the same problem with that chart too. I've seen the same behaviour with histograms but not pie charts.

import dash, dash_core_components as dcc, dash_html_components as html
import plotly.graph_objs as go

app = dash.Dash()
app.layout = html.Div([
        dcc.Graph(id='a', figure=dict(data = [go.Scatter( x = [1,2], y = [3,4] )])),
        dcc.Graph(id='b', figure=dict(data = [go.Scatter( x = [1,2], y = [3,4] )])),
        ], style={'columnCount': 2})

if __name__ == '__main__':
    app.run_server(debug=True)
@chriddyp
Copy link
Member

colum-count

Woah, weird.

@chriddyp
Copy link
Member

I created an issue in plotly.js about it: plotly/plotly.js#1902

I'm going to close this issue and watch the other one. When a fix gets merged in a plotly.js release, we'll bump the version in dash-core-components.

Thanks for reporting!

byronz pushed a commit that referenced this issue Apr 23, 2019
Update dependencies and fixes warnings
HammadTheOne pushed a commit to HammadTheOne/dash that referenced this issue May 28, 2021
HammadTheOne pushed a commit that referenced this issue Jul 23, 2021
Improve ignores & setup.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants