rpivotTable not fitting in my Shiny Dashboard page
问题 I am using rpivoTable package in my shiny dashboard. The problem is that my tables has close to 25 variables (columns) whereas I am only able to view 10 columns. Rest are out of view and there's no slider also to view them. Best, 回答1: I find one way -- add css to that pivot tags$head(tags$style( type = 'text/css', '#pivot{ overflow-x: scroll; }')), rpivotTableOutput('pivot', width = "100%", height = "500px") for example UI library(shiny) library(rpivotTable) library(shinydashboard) shinyUI