10
4

1 回答 1

2

您可以更改数据表包中 .js 文件中货币符号的位置。

编辑 DTWidget.formatCurrency 函数的行

 $(thiz.api().cell(row, col).node()).html(currency + markInterval(d, interval, mark));

简单地

 $(thiz.api().cell(row, col).node()).html(markInterval(d, interval, mark) + currency);

在 R 库目录中的 DT/htmlwidgets/datatables.js 文件中。

至于€符号,

formatCurrency(c('cur'), currency = "\U20AC", interval = 3, mark = ",", digits = 2)

对我有用,这就是你尝试过的,你没有看到任何符号?

于 2015-10-20T15:54:22.660 回答