答案 0 :(得分:1)
width
中的plotOutput
参数可用于此目的。然后,您可以将输出包装在div
中心对齐。
library(ggplot2)
library(shiny)
gg <- ggplot(mtcars, aes(wt, mpg)) + geom_point() +
theme(panel.background = element_rect(fill = 'grey'))
shinyApp(
fluidPage(
plotOutput('plot1'),
div(
plotOutput('plot2'),
style = "padding-right: 10%; padding-left: 10%"
)
),
function(input, output, session){
output$plot1 <- renderPlot(gg)
output$plot2 <- renderPlot(gg)
}
)