I'm using R shiny dashboards with tab panels. When using boxes the dashboardbody background cuts off.
This is the page when loaded:
And here it is scrolled down:
How can I get the body to resize so it doesn't cut off?
Here is the UI code:
dashboardPage(skin = "green",
dashboardHeader(title = "Test"),
dashboardSidebar(
sidebarMenu(id = "tab",
menuItem("Explore", tabName = "explore", icon = icon("eye"))
)
),
dashboardBody(
tabItems(
tabItem_explore
)
)
)
tabItem_explore <-
tabItem(tabName = "explore",
h2(icon("eye"), HTML(" "),"Explore"), br(),
tabsetPanel(
type = "tabs",
id = "explore_tabset",
tabPanel(
'Test', br(),
h3('Test'), br(),
plotlyOutput('plot1'), br(),
box(
title = "Test",
status = "primary",
solidHeader = TRUE,
plotOutput('plot2')
),
box(
title = "Test",
status = "primary",
solidHeader = TRUE,
plotlyOutput('plot3')
),
box(
title = "Test",
status = "primary",
solidHeader = TRUE,
plotlyOutput('plot4')
)
)
)
)