I have a shiny app at How rich am I? (a public page, but still in draft). It works fine on wide screens. If I shrink the width the right hand panel stacks underneath the left (as expected). However, the notes in the last fluidrow appear on top of the figure. Is this normal? Any solution?
Hi @BruceBrad. Are you able to share the actual code for the app? The example below follows the structure you laid out, and the functionality works as expected. I'm wondering if any special formatting is causing the issue.
Hi scottyd22
I can replicate the problem by modifying your example to have a height statement in the renderPlot statement. That is, renderPlot(height=700,{
The reason I've used a height statement is because I have a column chart with 100 columns, and R wants to make it a wide chart, which leaves lots of white space when it is shown on a normal screen (In general, I want the graph to be roughly square).
Hi @BruceBrad. When I add the height argument to renderPlot, I see the same issue. That said, can you just remove it and set height = 700 in plotOutput instead (like I did in the example app)?