简体   繁体   中英

How to align the choices in pickerInput to the center?

I am creating an app using RShiny.

I just found out that I can align the label (Year) of the picker input and centralize it.

However, I am not sure how I can align the choices to the center ('ALL' and the years when I select on the dropdown list.

I tried to add align = "center" into the pickerInput but I got an error.

This is how it looks like at the moment:

选择器输入

This is the code that I am using:

tabPanel("Price Analysis",value="Key Factors",

verticalLayout(

fluidRow(column(3 ,align = "center",

pickerInput(inputId="year_2","Year",

choices = c("All","2019", "2018","2017",'2016',"2015"),

selected = "All",

options = list(`actions-box` = TRUE),multiple = F))

In your options = list() put

options = list(`dropdown-align-center` = TRUE)

That should get you what you are looking for.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM