我有一个选项卡面板,我想一个数字,以填补整个面板的高度(图是高但窄).在图的左边我有一些文本,我希望图对齐tabPanel的右侧.然而,与下面的代码,我似乎无法得到的图,以填补整个面板的长度,而且它不能自动调整到正确的屏幕尺寸。正确的方法是什么?
ui <- shinydashboard::dashboardPage(
shinydashboard::dashboardHeader(title = "title"),
shinydashboard::dashboardSidebar(),
shinydashboard::dashboardBody(
shinydashboard::tabBox(
title = "title",
shiny::tabPanel(
"test panel",
column(
width = 8,
HTML(
"Some text goes here with bullet points.
<ul>
<li>
<b>Point one:</b> Lorem ipsum.
</li>
</ul>")
),
column(
width = 2,
img(
src ='testfig.png',
style = 'width: 100%;'
)
)
)
)
)
)
server <- function(input, output, session) {
}
shiny::shinyApp(ui, server)
字符串
上面的代码生成了这个:
的数据
虽然这是我想要的样子:
的
1条答案
按热度按时间k2fxgqgv1#
column()
应该被 Package 在fluidRow()
中:字符串