Column alignment in DT datatable

我与影子孤独终老i 提交于 2019-12-02 20:14:15

You have to set columnDefs in the argument option of the function datatable.

Look the example below

 library(DT)
 datatable(head(iris), rownames = FALSE, options = list(
 columnDefs = list(list(className = 'dt-center', targets = 0:4))
))

OBS. You have to set the target. In the example all the 5 columns are aligned to "center" (targets = 0:4). Finally, note that column numbers start from 0, not from 1. That's a Javascript feature I suspect. But I am not an expert of JS.. Anyway this worked for me :)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!