Hi! I am using {reactable} and I am interesting in rotating column headers. I tried the reactableTheme
approach demonstrated in reactableTheme documentation. However, I can't quite get it. Here is what I have tried, any suggestions would be much appreciated!
I am using the reactable dev version 0.2.3.90.
library(reactable)
reactable(
iris[1:30, ],
showSortable = TRUE,
theme = reactableTheme(
headerStyle = list(
"&:rotate" = list(transform = "rotate(90deg)")
)
))
Created on 2022-01-27 by the reprex package (v2.0.1)