我在R中有一个SelectInput,周围有很多空白。这是我的ui.r中的选择输入:
library(shiny)
shinyUI(pageWithSidebar(
headerPanel(GetHeader()),
sidebarPanel(
selectInput("date", "Select Date:", GetListOfDays(), width="120px")
#dateInput("date", "Date:", GetListOfDays() ) #value = "2012-02-29")
),
mainPanel(
uiOutput("plots")
)
现在,当我运行报告时,我看到:
您是否在选择输入的左侧看到所有空格?如何修剪或移除它?
谢谢。
最佳答案
似乎函数中有一个width
参数。
library(shiny)
shinyUI(pageWithSidebar(
headerPanel(GetHeader()),
sidebarPanel(
selectInput("date", "Select Date:", GetListOfDays(), width="120px"),
width = 2 ### EDIT HERE
),
mainPanel(
uiOutput("plots")
)