如何在闪亮仪表板的框中居中放置表格

时间:2018-08-22 15:47:52

标签: r shiny shiny-server shinydashboard

我在将“发光仪表板”中制作的桌子居中放在盒子中时遇到困难。我使用了.csv文件,但这是一些假数据:

Stage = c("Survey", "Work Sample", "Interview", "Stats Test")
Score = c("+33.7%", "+14.8%", "+20.8%", "+28.17%")
no1_cand = data.frame(Stage, Score)
Score =c("+37.1%", "+14.2%", "+19.3%", "+26.3%")
no2_cand = data.frame(Stage, Score)
Score = c("+33.1%", "+22.2%", "+17.3%", "+25.8%")
no3_cand = data.frame(Stage, Score)
Score = c("+29.1%", "+17.2%", "+15.3%", "+23.3%")
no4_cand = data.frame(Stage, Score)
Score = c("+22.1%", "+12.5%", "+11.4%", "+19.5%")
no5_cand = data.frame(Stage, Score)

以及表格和框的当前代码:

#UI
    box(title = "Top 5 Candidates",
                      status = "primary",
                      solidHeader = F,
                      collapsible = T,
                      width = 12,
                      fluidRow(
                        tableOutput('top5')))
#Server
  output$top5 = renderTable({
    top5_data
  })

当前看起来像这样:

enter image description here

1 个答案:

答案 0 :(得分:2)

尝试:

box(title = "Top 5 Candidates"
, status = "primary", solidHeader = F
, collapsible = T, width = 12
, column( 12,align="center" ,tableOutput('top5')))