R Shiny datatable列右对齐方法

    科技2025-01-11  8

    在renderDataTable的时候设置对应列的class为“dt-right”:

    server = function(input, output) { output$mytable = renderDataTable({ mtcars }, option=list( columnDefs=list( list(targets=1:ncol(mtcars), class="dt-right") ) ) ) }
    Processed: 0.017, SQL: 8