Щит Shinydashboard: вопрос высоты предмета - PullRequest
0 голосов
/ 08 апреля 2019

enter image description here Как мне увеличить высоту элемента tabItem в shinydashboard? Кажется, что нет никакой возможности для изменения высоты и ширины в функции «tabItem». Кто-нибудь, пожалуйста, помогите?

Я использовал tabItems, чтобы связать его с боковой панелью. Элементы блестящей приборной панели.

dashboardBody(
    tabItems(
       tabItem ("map1", height = "1000px",  # doesn't work 
              column(9,
                     box( height = "1000px", #increases the height of the box, but not of the panel.

                   leafletOutput("aishe_map", height = "950px", width = "100%") 
              )),
              column(width = 3,
                     box(
                       width= NULL,
                       selectInput('indicator', 'Select an indicator', 
                                   choices = unique(aishe_m$variable),
                                   selected = aishe_m$variable[1]),
                       selectInput("year", 'Select year', 
                                   choices = unique(aishe_m$Year),
                                   selected = aishe_m$Year[25]),
                       selectInput("vote", "By vote share", choices = unique(aishe_m$`leading party`),
                                   selected = "BJP")))),

      tabItem("data1", 
                  dataTableOutput("table_aishe")
              )
    )))  
...