我可以让我闪亮的应用程序使用格式化程序中应用的格式吗?
第一列在列出时以绿色打印,但不是闪亮的。
ft <- formattable(mtcars,
list(mpg = formatter("span", style = "color:green")))
#mpg prints green here:
ft
app = shinyApp(
ui = fluidPage(
fluidRow(
column(12,
formattableOutput('table')
)
)
),
server = function(input, output) {
#but not here
output$table <- renderFormattable({formattable(ft, list())})
}
)