Currently, I am using shinydashboard and have formatted my ui code in the following way:
ui = dashboardPage(skin="black",
dashboardHeader(disable = T),
dashboardSidebar(width=300),
dashboardBody()
)
On one of the pages within the body, the plots appear larger than the page background, creating this effect:
https://i.sstatic.net/4EFFI.png
It is evident that the black background does not completely cover the plots on the page.
Could there be an argument within either dashboardPage() or dashboardBody() that controls height? Alternatively, does anyone know the correct HTML code to address this issue?