1

在最近更新ShinydasboardPlus(到 2.0)之后,我无法制作box没有标题,也没有标题空间。

我试过title = NULL, headerBorder = FALSE了,仍然有这个空间。如何摆脱它?我想要一个只有内容的盒子,没有标题,没有标题空间。 在此处输入图像描述

谢谢!

例子:

library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
ui <- dashboardPage(
  title = "Box API",
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(
    box(
      title = NULL,
      headerBorder = FALSE,
      "Box body")
  )
)

server <- function(input, output, session) {
}

shinyApp(ui, server)
4

1 回答 1

1

您可以使用css不显示标题。像这样的东西:

ui <- dashboardPage(
  title = "Box API",
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody(
    box(
      id = 'foo',  # use an id to only select this box
      title = NULL,
      headerBorder = FALSE,
      "Box body"
    ),
    tags$head(tags$style('#foo .box-header{ display: none}'))  # target the box header of foo
  )
)
于 2021-03-18T14:37:48.033 回答