rstudio / shinydashboard

Shiny Dashboarding framework
https://rstudio.github.io/shinydashboard/
Other
893 stars 300 forks source link

Fix #62: make images resize when the sidebar collapses/expands #185

Closed bborgesr closed 7 years ago

bborgesr commented 7 years ago

Test app:

library(shinydashboard)
library(shiny)

shinyApp(
  ui = dashboardPage(
    dashboardHeader(),
    dashboardSidebar(),
    dashboardBody(plotOutput("plot1"))
  ),
  server = function(input, output, session) {
    output$plot1 <- renderPlot({ plot(cars) })
  }
)