I am using shiny dashboard package for my app. while trying to display 2 plots on the same page (each one in a box) they are overlapping. Also tried to use fluidRow for each plot - but still it seems both plot are connected to the same box (and overlapping)
This is my code:
mainPanel(
fluidRow(
box(showOutput("MeasuresPlot","morris"),width=6,title="Graph"),
box(showOutput("ImportPlot","morris"),width=6,title="Graph2")
)
)