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
The legend is not shown html file that is created with htmlwidgets:saveWidget. I swear this exact code used to work with older versions.
reproducible code:
set.seed(1) bla_data <- matrix(rnorm(99), ncol = 3) par3d(FOV = 0, windowRect = c(30, 30, 1770, 1000)) plot3d(bla_data) legend3d("topleft", c("bla1", "bla2", "bla3"), pch = 16, col = "black", cex = 3) widget <- rglwidget() htmlwidgets::saveWidget(widget, "D:/test/test.html")
The text was updated successfully, but these errors were encountered:
I see the problem too. I don't know if this is an rgl change or an htmlwidgets change; I will take a look.
rgl
htmlwidgets
Sorry, something went wrong.
This looks like an rgl change, introduced last year around commit 2ec0521 .
In fact, the legend doesn't completely disappear: it shows up sometimes when the object in the scene is rotated.
Fix background issues:
b01710a
- multiple background objects - disappearing background plots Fixes #421 .
Successfully merging a pull request may close this issue.
The legend is not shown html file that is created with htmlwidgets:saveWidget. I swear this exact code used to work with older versions.
reproducible code:
The text was updated successfully, but these errors were encountered: