I have a shiny datatable that looks like this:
However, I want it to have full borders around all of the cells to make it look more like an excel sheet. I know in the shiny table it is as simple as calling bordered = T but that does not work for the datatable in Shiny.
This is my UI code:
      fluidRow(
        DT::dataTableOutput("stats_table", width = "95%")
      )
And this is my server code:
output$stats_table <- DT::renderDataTable(DT::datatable({
  # Do not show a plot when the page first loads
  # Wait until the user clicks "Plot" button
  if (input$plot_graph_button == 0)
    return()
  data <- summary_table
  #### Do some filtering here ####
  data
}))
Thank you in advance for the help, I feel like this should be a very easy fix, however, I am not finding any good information on it. I do realize this is purely cosmetic and does not effect the functionality of the table.

