闪亮的 rpivotTable - 隐藏 rendererName 下拉列表

rpivotTable in shiny - hide rendererName dropdown list

我试图在 shiny 应用程序中隐藏渲染器下拉列表。

我已经通过添加 tags$style 尝试了此处列出的方法 (),但它似乎不起作用。

ui.R

library(shiny)
library(rpivotTable)

shinyUI(fluidPage(

  tags$style(type = 'text/css', "#pivot tbody > tr > td:nth-child(1)  {display:none; }"),

    rpivotTableOutput('pivot')
))

server.R

library(shiny)
library(rpivotTable)

function(input, output, session) {

  output$pivot <- renderRpivotTable({
    rpivotTable(iris)
  })

}

回答我自己的问题,只需要以下行:

server.R

tags$style(type = 'text/css', ".pvtRenderer {visibility: hidden}")