I have a couple of diagrams in my main panel in Shiny Dashboard
, and I was wondering how to expand the space at the bottom of the main panel? How do I change mine ui.R
to do this?
dashboardBody(
tabItems(
tabItem("dashboard",
mainPanel(
showOutput("plot3", "Nvd3"),
showOutput("plot4", "Nvd3")
)),
Update: adding HTML("<br><br><br>")
on the main panel only created a wider dark panel:
source
share