mainPanel top align

I made a huge area for plotting, and there are different sized plots on the main panel (depending on user input).I want to align my plot to it's top aligned.

renderPlot({...}, height = 4000,width = 800)

ui <- fluidPage(
sidebarPanel(
selectInput('yscale', 'Y Scale', c('Linear','Log')),
width=2),
mainPanel(
plotOutput('plot1'),
width=10
)
)

This topic was automatically closed 54 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.