gpt4 book ai didi

R Shiny 选择 : How to set the minimum number of options in selectizeInput

转载 作者:行者123 更新时间:2023-12-04 08:48:41 28 4
gpt4 key购买 nike

在 Shiny 中使用 selectizeInput 时,我试图增加下拉列表的长度。

我知道我可以设置显示的最大项目数:options = list(maxOptions = n)但是我怎么能定义最少数量的选项呢?

最佳答案

正如评论中所说,没有最少数量的选项设置,至少我知道没有。但是,由于您正在尝试增加下拉列表的长度,因此您可以使用 CSS 来实现。

假设这是您的下拉列表:

  selectizeInput("select", "Select multiple options",
choices = LETTERS, multiple = T
),

只需添加:
  tags$style(type='text/css', 
".selectize-dropdown-content {
max-height: 600px; ## CHANGE THIS
}"
)

你会得到:

long

作为一个最小的例子,试试这个:
library(shiny)

ui <- fluidPage(

selectizeInput("select", "Select multiple options",
choices = LETTERS, multiple = T
),
tags$style(type='text/css',
".selectize-dropdown-content {
max-height: 600px;
}"
)
)

server <- function(input, output){}

shinyApp(ui=ui, server=server)

关于R Shiny 选择 : How to set the minimum number of options in selectizeInput,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25843638/

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