如何将行边框和斑马条纹(行条纹)添加到 R 中的数据表 DT?

How to add row borders and zebra stripes (row striping) to datatables DT in R?

我想知道在 R 中添加 row borders styling and zebra stripes option to datatables created with the package DT 的正确方法

简单的入门示例:

library(DT)
datatable(iris)

带选项的简单示例:

datatable(head(iris, 20), options = list(
  columnDefs = list(list(className = 'dt-center', targets = 4)),
  pageLength = 5,
  lengthMenu = c(5, 10, 15, 20)
))

不确定为什么我收到了反对票?如果有任何不清楚的地方或如何改进这个问题,请告诉我。

您可以将 striperow-border class 添加到 table 容器中:

library(DT)
library(htmltools)
datatable(
  head(iris, 20),
  container = tags$table(
    class="stripe row-border",
    tags$thead(tags$tr(lapply(colnames(iris), tags$th)))
  )
)

这将创建具有两个 class 的 table 容器,并且将应用样式功能。您可以添加您发布的 link 中的任何其他样式。