相关疑难解决方法(0)

带有光泽的selectInput旁边的标签

我有一个像这样的闪亮应用程序:

server.R:

    library(shiny)

    function(input, output) { NULL }
Run Code Online (Sandbox Code Playgroud)

和ui.R:

    library(shiny)  


    pageWithSidebar( 

       headerPanel("side-by-side"), 

     fluidRow(

        column(2),
        column(4,
           wellPanel(
               selectInput(inputId = "options", label = "some text", 
                           choices = list(a = 0, b = 1)))   
           )
      ),

      fluidRow( 
         h3("bla bla")
     )
    )
Run Code Online (Sandbox Code Playgroud)

我希望在它旁边有selectInput标签,而不是上面.你知道怎么做吗?

我发现了这个:将闪亮的小部件放在它们的标题旁边, 但它对我不起作用.

css user-interface label r shiny

6
推荐指数
1
解决办法
5875
查看次数

标签 统计

css ×1

label ×1

r ×1

shiny ×1

user-interface ×1