Robin Cura
unread,Jul 8, 2013, 8:46:08 AM7/8/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to shiny-...@googlegroups.com
Hi,
I'm trying to align some pltos in my output, which is organised with tabPanels :
mainPanel(
tabsetPanel(
tabPanel("Plots",
plotOutput("tree", width="45%"),
plotOutput("afc", width="45%"),
),
tabPanel("Tables", tableOutput("table")),
tabPanel("Maps", verbatimTextOutput("blabla"))
)
)
I'd like my 2 plotOutputs (tree and afc) to be on the same line, so that I can plot some other plots under.
I tried putting them on the same paragraph (using HTML("<p>") and also tags$p()), but none of my attempts succeeded.
Any idea ?
Cheers,
Robin