微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Shinydahsboardplus:如何添加没有标题的框?

如何解决Shinydahsboardplus:如何添加没有标题的框?

最近更新 Shinydasboardplus(到 2.0)后,我无法制作没有标题且没有标题间的 Box

我尝试了 title = NULL,headerBorder = FALSE 并且仍然有这个空间。如何摆脱它?我想要一个只有内容的框,没有标题,没有标题空间。

enter image description here

谢谢!

示例:

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)

解决方法

您可以使用 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
  )
)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。