column
From shiny v0.12.2
by Winston Chang
Create a column within a UI definition
Usage
column(width, ..., offset = 0)
Arguments
- width
- The grid width of the column (must be between 1 and 12)
- ...
- Elements to include within the column
- offset
- The number of columns to offset this column from the end of the previous column.
Value
See Also
Examples
fluidRow(
column(4,
sliderInput("obs", "Number of observations:",
min = 1, max = 1000, value = 500)
),
column(8,
plotOutput("distPlot")
)
)
fluidRow(
column(width = 4,
"4"
),
column(width = 3, offset = 2,
"3 offset 2"
)
)
Community examples
Looks like there are no examples yet.