R语言 在“闪亮”单选按钮中的同一行上显示标签和选项

inkz8wg9  于 2023-01-06  发布在  其他
关注(0)|答案(2)|浏览(120)

我希望标签和选项都显示在同一行的单选按钮在闪亮。
我试过:

tags$div(tags$span(radioButtons("id",label = "Label:",choices = c("All "="all","Option One"="option1","Option Two"="option2"),inline=TRUE)))

带有和不带有"tags $div(tags $span("片段。
我希望结果是:

Label: ()All ()Option One () Option two

相反我还在

Label:
 ()All ()Option One () Option two
yhqotfr8

yhqotfr81#

尝试float: left
因此,它将是这样的:

library(shiny)

ui <- fluidPage(
  tags$head(
    tags$style(
      HTML(
        "
        label{
          float:left;
        }
      "
      ))),

      radioButtons("id1",label = "Label:",choices = c("All "="all","Option One"="option1","Option Two"="option2"),inline=TRUE)

)

server <- function(input, output) {

}

shinyApp(ui, server)

xmq68pz9

xmq68pz92#

一个新的变量与连接的信息工作吗?
例如:

df$labelNew<-paste(df$var,"",df$choices)

相关问题