Shinydashboard增加仪表板页面的大小

时间:2019-02-15 14:25:31

标签: html css r shiny shinydashboard

我正在使用Shinydashboard,我的ui代码采用以下格式:

ui = dashboardPage(skin="black", 
                   dashboardHeader(disable = T),
                   dashboardSidebar(width=300),
                   dashboardBody()

)

在我身体的其中一个页面中,绘图比页面背景大,看起来像这样:

enter image description here

请注意,黑色背景并未覆盖页面上的图形。

是否存在控制高度的dashboardPage()或dashboardBody()的参数?另外,有人知道正确的html可以做到这一点吗?

1 个答案:

答案 0 :(得分:1)

我曾经有过类似的问题。请尝试以下操作:

dashboardBody(
  tags$head(tags$style(
    HTML('.wrapper {height: auto !important; position:relative; overflow-x:hidden; overflow-y:hidden}')
  ))
)