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
zoomable
closable = TRUE
When closable is set to FALSE, zoomable parameter is not honoured.
closable
tablerCard()
library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = "test", body = tablerDashBody( tablerCard( title = "Card", closable = FALSE, # set to FALSE zoomable = TRUE, # set to TRUE sliderInput("obs", "Number of observations:", min = 0, max = 1000, value = 500 ), plotOutput("distPlot"), status = "success", statusSide = "left" ) ) ), server = function(input, output) { output$distPlot <- renderPlot({ hist(rnorm(input$obs)) }) } )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue
When
closable
is set to FALSE,zoomable
parameter is not honoured.Reprex (taken from
tablerCard()
docs)Screenshot
The text was updated successfully, but these errors were encountered: