I'm quiet new to R but am trying to design a UI which has a main box going across the top of the main body with two smaller boxes underneath. At the moment everything I have tried seems to display it in each corner of the main body. Image attahced. The subsection of my code is below:
dashboardBody(
fluidRow(
box(plotlyOutput("Map"))),
fluidRow(
box(plotlyOutput("Chart")),
box(tableOutput("Table")))
)
)
I have tried width and height (100%) etc but now joy.
Thanks in advance
