更改闪亮仪表板框的宽度

时间:2019-10-11 09:58:18

标签: r shiny shinydashboard

我是R语言的新手,但我正在尝试设计一个UI,该UI的主框穿过主体的顶部,下面有两个较小的框。目前,我尝试过的所有内容似乎都显示在主体的每个角上。图片已附加。我的代码的小节如下:

{{1}}

我尝试过宽度和高度(100%)等,但是现在很快乐。

enter image description here

预先感谢

1 个答案:

答案 0 :(得分:1)

默认情况下,box设置为width = 6,因此只需将其更改为12:

  

box(...,标题=空,页脚=空,状态=空,solidHeader =   FALSE,背景= NULL,宽度= 6,高度= NULL,可折叠=   FALSE,折叠= FALSE)

library(shiny)
library(plotly)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(
    fluidRow(
      box(width=12,plotlyOutput("Map"))),
    fluidRow(
      box(plotlyOutput("Chart")),
      box(tableOutput("Table")))
  )
)

server <- function(input, output) { 

}

shinyApp(ui, server)