gpt4 book ai didi

r - Shinydashboard 'topbar'

转载 作者:行者123 更新时间:2023-12-04 03:56:50 24 4
gpt4 key购买 nike

是否可以在dashboardHeader旁边的水平栏中放置一些项目?我知道您可以像在this example中一样将notificationItem放在最右边。但是我想使用与dashboardSidebar中相同的选项,例如添加过滤器等。我希望在顶部使用这样的过滤器:
enter image description here

最佳答案

根据 pig 排的答案,您可以简单地将selectInput中的div(或其他 Shiny 的输入)与float:left一起使用,以使其水平分布:

CustomHeader <- dashboardHeader()
CustomHeader$children[[3]]$children <- list(
div(style="float:left;height:50px",selectInput("select1", NULL, c("a","b","c"))),
div(style="float:left;height:50px",selectInput("select2", NULL, c("d","e","f"))))

ui <- dashboardPage(
CustomHeader,
dashboardSidebar(),
dashboardBody(textOutput("text1"),textOutput("text2"))
)

server <- function(input, output, session) {
output$text1 <- renderText({input$select1})
output$text2 <- renderText({input$select2})
}

shinyApp(ui, server)

关于r - Shinydashboard 'topbar',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40396410/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com