【发布时间】:2018-06-28 17:38:55
【问题描述】:
我是 Shiny 的新手,不知道如何“取消加粗”标签(所附屏幕截图中的进给率和操作)。这是我的 UI 部分代码:
ui <- fluidPage(titlePanel(""),
sidebarLayout(
sidebarPanel(
# adding the new div tag to the sidebar
tags$div(class="header", checked=NA,
tags$h4(strong("Duty"))),
selectInput('id1', 'Feed rate (m^3/h)', c("All", main$metric[1:3])),
selectInput('id2', 'Operation', c("All", main$metric[4:5])),
mainPanel(DT::dataTableOutput("table"))
))
这是截图:
【问题讨论】: