column header padding
column header padding
white_rabbit
Posts: 9Questions: 3Answers: 0
Are there any settings for using datatable in R where the column heading padding can be set to the minimum? This is the code i'm using using
output$book_table <- DT::renderDT(RVTables$book %>%
filter(deal==as.numeric(input$deal_choice)),
selection = list(
mode="single",
selected=RVTables$row_edited
),
editable = TRUE,
rownames = FALSE,
options=list(
autoWidth=TRUE,
scrollX = TRUE,
ordering=FALSE,
pageLength=12,
scrollY = TRUE,
bLengthChange= FALSE,
searching=FALSE
)
)
thanks
This discussion has been closed.