How can someone delete the title
section in shiny
box? Or reduce its height to 0
? No I dont want it NULL
or =""
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)