gpt4 book ai didi

r - Shiny 仪表板plus : how to add box without a title?

转载 作者:行者123 更新时间:2023-12-02 18:51:32 24 4
gpt4 key购买 nike

最近更新 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
)
)

关于r - Shiny 仪表板plus : how to add box without a title?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66688910/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com