We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hoverinfo doesn't work when used with plot_geo(). If hoverinfo is omitted, default hoveinfo works.
plot_geo()
hoverinfo
df <-read.csv('https://raw.githubusercontent.com/plotly/datasets/master/2011_february_us_airport_traffic.csv') # doesn't work p <- plot_geo(df, lat=~lat, lon=~long, hoverinfo='x') # works with no console errors p <- plot_geo(df, lat=~lat, lon=~long)
The text was updated successfully, but these errors were encountered:
That 'x' should be 'lon', but it still doesn't work because of plotly/plotly.js#2044
'x'
'lon'
Sorry, something went wrong.
This works now
No branches or pull requests
hoverinfo doesn't work when used with
plot_geo()
. Ifhoverinfo
is omitted, default hoveinfo works.The text was updated successfully, but these errors were encountered: