inst/JaksNov13/SH_hello/ui.R

require(ShinyHelper)

shinyUI(

  pageWithSidebar( # START pageWithSidebar

    headerPanel("01_hello via ShinyHelper"),

    sidebarPanel( # START sidebarPanel
      sliderInput("bins", "Number of bins:",
        1, 50,
        30, step=NULL,
        round=FALSE, format="#,##0.#####",
        locale="us",
        ticks=TRUE, animate=FALSE)
    ), # END sidebarPanel

    mainPanel( # START mainPanel
      plotOutput("distplot","100%","400px")
    ) # END mainPanel

  ) # END pageWithSidebar

)
jayemerson/ShinyHelper documentation built on May 18, 2019, 5:57 p.m.