Hi all,
Is there a way to underline values in DT table . Example
=library(shiny)
library(DT)
ui <- fluidPage(
dataTableOutput("iris")
)
server <- function(input, output, session) {
output$iris <- renderDataTable(datatable(head(iris)))
}
shinyApp(ui, server)
In the above application, is there a way to underline any values ? (example value (2,3) , meaning 2nd row and 3rd column value)