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
When adding hover interactivity to a geom_ribbon_interactive, it does not apply the same interaction to the lower and upper envelope.
For example, with this:
library(ggiraph) tt <- data.frame(y=sort(rnorm(100)),z=rep(c(1,2),50)) tt[tt$z==2,'y']<-tt[tt$z==2,'y']*2 gg<-ggplot(data=tt,aes(x=1:100,y=y,group=z,color=z,data_id=z))+ geom_line_interactive()+ geom_ribbon_interactive(aes(ymin=y-0.4,ymax=y+0.4), alpha = 0.2) g<-girafe(ggobj = gg, width_svg = 9, height_svg = 5, options = list( opts_hover_inv(css = "opacity:0.1;"), opts_hover(css = "stroke-width:2;") )) g
when hovering over one of center line or the upper lines, the associated bottom line is not selected.
R version 4.3.0 (2023-04-21) ggiraph_0.8.7
The text was updated successfully, but these errors were encountered:
sigmapi
No branches or pull requests
When adding hover interactivity to a geom_ribbon_interactive, it does not apply the same interaction to the lower and upper envelope.
For example, with this:
when hovering over one of center line or the upper lines, the associated bottom line is not selected.
R version 4.3.0 (2023-04-21)
ggiraph_0.8.7
The text was updated successfully, but these errors were encountered: