我想在同一行中显示 4 个 infoBoxes(或 valueBoxes,我真的不在乎),但它似乎不起作用......
这是代码的工作简化版本,基于 Rstudio wesite 上的 shinydashbaord 教程(我使用的是 infoBoxOutputs,但我想这里的格式无关紧要):
ui <- dashboardPage(
dashboardHeader(title = "Info boxes"),
dashboardSidebar(),
dashboardBody(
# infoBoxes with fill=FALSE
fluidRow(
infoBox("1st", 10 * 2, icon = icon("credit-card")),
infoBox("2nd", 10 * 2, icon = icon("credit-card")),
infoBox("3rd", 10 * 2, icon = icon("credit-card")),
)
)
)
在同一行中显示 3 个信息框。但是,一旦我再添加一个 infoBox,它就会移动到新的一行:
ui <- dashboardPage(
dashboardHeader(title = "Info boxes"),
dashboardSidebar(),
dashboardBody(
# infoBoxes with fill=FALSE
fluidRow(
infoBox("1st", 10 * 2, icon = icon("credit-card")),
infoBox("2nd", 10 * 2, icon = icon("credit-card")),
infoBox("3rd", 10 * 2, icon = icon("credit-card")),
infoBox("4th", 10 * 2, icon = icon("credit-card")),
)
)
)
我还尝试使用列 - 然后这些框显示在同一行上,但被扭曲了。
有任何想法吗?