I have a fluidRow with a plot rendered in one of the columns. I would like to know how to center the plot when I have manually specified the plot width via the renderPlot({crea
align="center" can be included within the column expression (not within plotOutput though). e.g.
align="center"
column
plotOutput
fluidRow( column(8, align="center", plotOutput('plot1') ) )