我正在制作一个闪亮的应用程序,而且我将它格式化的方式太宽了。我用width参数缩短了它们,所以它们看起来很合理,但是我无法弄清楚如何将它们置于选项卡面板中(显然plotOutput没有采用对齐参数)。
tabsetPanel(
tabPanel("Plot1", plotOutput("plot1", width="60%")),
tabPanel("Plot2", plotOutput("plot2", width="60%"))
)
答案 0 :(得分:5)
我不知道任何闪亮的特定方式,但你总是可以使用CSS来设置输出图像的样式。只需将tags$style
与以下内容添加到您的用户界面:
"#plot1 img, #plot2 img {
width: 60%;
display: block;
margin-left: auto;
margin-right: auto;
}"
并从width="60%"
移除plotOutput
。排除width
只是Bootstrap center-block类。最小的ui定义可能如下所示:
shinyUI(bootstrapPage(
tags$head(tags$style(
type="text/css",
"#plot1 img, #plot2 img {
width: 60%;
display: block;
margin-left: auto;
margin-right: auto;
}"
)),
tabsetPanel(
tabPanel("Plot1", plotOutput("plot1")),
tabPanel("Plot2", plotOutput("plot2"))
)
))