mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-13 00:48:09 -05:00
67 lines
1.4 KiB
R
67 lines
1.4 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/bootstrap-layout.R
|
|
\name{column}
|
|
\alias{column}
|
|
\title{Create a column within a UI definition}
|
|
\usage{
|
|
column(width, ..., offset = 0)
|
|
}
|
|
\arguments{
|
|
\item{width}{The grid width of the column (must be between 1 and 12)}
|
|
|
|
\item{...}{Elements to include within the column}
|
|
|
|
\item{offset}{The number of columns to offset this column from the end of the
|
|
previous column.}
|
|
}
|
|
\value{
|
|
A column that can be included within a
|
|
\code{\link[=fluidRow]{fluidRow()}} or \code{\link[=fixedRow]{fixedRow()}}.
|
|
}
|
|
\description{
|
|
Create a column for use within a \code{\link[=fluidRow]{fluidRow()}} or
|
|
\code{\link[=fixedRow]{fixedRow()}}
|
|
}
|
|
\examples{
|
|
## Only run examples in interactive R sessions
|
|
if (interactive()) {
|
|
|
|
ui <- fluidPage(
|
|
fluidRow(
|
|
column(4,
|
|
sliderInput("obs", "Number of observations:",
|
|
min = 1, max = 1000, value = 500)
|
|
),
|
|
column(8,
|
|
plotOutput("distPlot")
|
|
)
|
|
)
|
|
)
|
|
|
|
server <- function(input, output) {
|
|
output$distPlot <- renderPlot({
|
|
hist(rnorm(input$obs))
|
|
})
|
|
}
|
|
|
|
shinyApp(ui, server)
|
|
|
|
|
|
|
|
ui <- fluidPage(
|
|
fluidRow(
|
|
column(width = 4,
|
|
"4"
|
|
),
|
|
column(width = 3, offset = 2,
|
|
"3 offset 2"
|
|
)
|
|
)
|
|
)
|
|
shinyApp(ui, server = function(input, output) { })
|
|
}
|
|
}
|
|
\seealso{
|
|
\code{\link[=fluidRow]{fluidRow()}}, \code{\link[=fixedRow]{fixedRow()}}.
|
|
}
|