fluidrow and boxing in r Shiny

Hi, having issues with the boxing in r shiny. In my UI, I intend to have a sidebar with sliders that create some output values in a box at the right. In the center, I intend to have a plot as main visual of the dashboard. However, there is quite some space between the box of the plot and the box with the values. Why is that? Plesae see screenshot.

Here is my code for the UI, thanks a lot!

Can you post the whole code? The server side as well. Enough so that it can be run?

1 Like

You can use column in the fluidrow just like:

fluidRow(
column(6, plotOutput("output1")),
column(6, plotOutput("output2"))
)

Be careful whole width is equal to 12. You can seperate %50 %50 by giving 6

2 Likes

Thanks for your support, I decided to rearrange the dashboard to avoid the problem :stuck_out_tongue: The problem was discussed already some times, but the solutions there did not really work. See e.g.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.