【发布时间】:2020-08-06 04:20:39
【问题描述】:
我想在侧边栏菜单项之一上方添加空间。例如,下面示例中的“小部件”应显示在页面底部的侧边栏下方(意味着菜单顶部应该有空间)。我尝试使用 tags$div(style = "margin-top: 50px;", 执行此操作,但没有获得所需的输出。
library(shinydashboard)
library(shiny)
ui <- dashboardPage(
dashboardHeader(title = "Basic dashboard"),
dashboardSidebar(
sidebarMenu(
menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard")),
menuItem("Widgets", tabName = "widgets", icon = icon("th"))
)
),
dashboardBody(
tabItems(
# First tab content
tabItem(tabName = "dashboard",
fluidRow(
box(plotOutput("plot1", height = 250)),
box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
),
# Second tab content
tabItem(tabName = "widgets",
h2("Widgets tab content")
)
)
)
)
server <- function(input, output) {
set.seed(122)
histdata <- rnorm(500)
output$plot1 <- renderPlot({
data <- histdata[seq_len(input$slider)]
hist(data)
})
}
shinyApp(ui, server)
【问题讨论】:
标签: r shiny shinydashboard