如何才能删除title框中的shiny部分?还是把它的高度降低到0?不,我不想要NULL或=""
library(shiny)
library(plotly)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
fluidRow(
box(width=12)),
fluidRow(
box(title="something"),
box())
)
)
server <- function(input, output) {
}
shinyApp(ui, server)发布于 2022-04-15 04:19:06
https://stackoverflow.com/questions/67235065
复制相似问题