gpt4 book ai didi

html - shinydashboard 标题中的位置标题

转载 作者:行者123 更新时间:2023-12-01 22:46:17 24 4
gpt4 key购买 nike

有了这个基本的 Shiny 应用程序:我想将我的标题放在标题中,如下图中红色所示:

已经有一些解决方案Add text on right of shinydashboard header但我想知道是否有更“直接”的方式?

@matrixloading 的解决方案很吸引人,但由于文本前面的点而不能令人满意:

library(shiny)
library(shinydashboard)

ui <- dashboardPage(
dashboardHeader(title = "Basic dashboard"),
dashboardSidebar(),
dashboardBody(
# Boxes need to be put in a row (or column)
fluidRow(
box(plotOutput("plot1", height = 250)),

box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
)
)

server <- function(input, output) {
set.seed(122)
histdata <- rnorm(500)

output$plot1 <- renderPlot({
data <- histdata[seq_len(input$slider)]
hist(data)
})
}

shinyApp(ui, server)

enter image description here

最佳答案

我们可以在 dashboardHeader 的 de nav 元素内附加一个子元素。

dashboardHeader(title = "Basic dashboard") |>
tagAppendChild(
div(
"This is My Title",
style = "
display: block;
font-size: 1.5em;
margin-block-start: 0.5em;
font-weight: bold;
color: darkred;
margin-right: 50%",
align = "right"
),
.cssSelector = "nav"
)

enter image description here

关于html - shinydashboard 标题中的位置标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75269898/

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