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
hello when i want to plot two wordcloud on the same page only the first one is showing
i put ther description on stackoverflow https://stackoverflow.com/questions/54943338/two-wordcloud2-on-the-same-shiny-page/54949680?noredirect=1#comment96732005_54949680
the simple script
library(wordcloud2) library(shiny) ui <- fluidPage( wordcloud2Output('wordcloud2'), wordcloud2Output('wordcloud3') ) server <- function(input, output) { output$wordcloud2 <- renderWordcloud2({ wordcloud2(demoFreq) }) output$wordcloud3 <- renderWordcloud2({ wordcloud2(demoFreq) }) } shinyApp(ui = ui, server = server)`
when i check the html only the first one have "visibility: inherit"
The text was updated successfully, but these errors were encountered:
Is this the same issue as #34 ? It looks very similar, and if the issue is not reproducible with version 0.2.2, this should be closed.
Sorry, something went wrong.
it's working on 0.2.2 version yes, CRAN 0.2.1 isn't => closed
No branches or pull requests
hello
when i want to plot two wordcloud on the same page only the first one is showing
i put ther description on stackoverflow https://stackoverflow.com/questions/54943338/two-wordcloud2-on-the-same-shiny-page/54949680?noredirect=1#comment96732005_54949680
the simple script
when i check the html only the first one have "visibility: inherit"
The text was updated successfully, but these errors were encountered: