请参阅下面一个非常简单的 R 闪亮应用程序,它呈现可反应。
https://kormir.shinyapps.io/reactable_example/
library(shiny)
library(reactable)
ui <- fluidPage(
tags$head(tags$style(HTML('.ReactTable {border-collapse:collapse; }
.ReactTable .rt-thead .rt-td, .ReactTable .rt-thead .rt-th {
height: 200px;
word-wrap: break-word;
transform:
translate(10px, -25px)
rotate(-80deg);
}'))),
reactableOutput('rt')
)
server <- function(input, output) {
output$rt <- renderReactable({
reactable(mtcars[1:4,1:5], fullWidth = F)
})
}
# Run the application
shinyApp(ui = ui, server = server)
在 tags$head 中,您可以看到我尝试旋转标题,但结果很糟糕:
有没有更简单的方法来正确旋转标题?
谢谢