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

shiny only one plot is showing #59

Closed
brunelserge opened this issue Mar 5, 2019 · 2 comments
Closed

shiny only one plot is showing #59

brunelserge opened this issue Mar 5, 2019 · 2 comments

Comments

@brunelserge
Copy link

@brunelserge brunelserge commented Mar 5, 2019

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"

image

@stragu
Copy link

@stragu stragu commented Jun 23, 2019

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.

@brunelserge
Copy link
Author

@brunelserge brunelserge commented Jun 25, 2019

it's working on 0.2.2 version yes, CRAN 0.2.1 isn't => closed

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