我在表格中有一些长文本,我将其显示为可反应的。我希望长文本被截断,并且仅在悬停在其顶部时出现。到目前为止,我已经设法截断单元格中的文本,但我无法使悬停工作。有什么帮助吗?
library(reactable)
library(tidyverse)
reactable(
iris[1:5, ] %>% mutate(Species = 'This text is long and should only show up entirely when hovering'),
columns = list(
Species = colDef(
html = TRUE,
style = "
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
hover: visible")
)
)```