container | R Documentation |
Creates a new container object that can hold panes or other containers in the NG-CHM panel layout system. A container organizes its children either vertically or horizontally and specifies their dimensions as percentages.
container(
children = list(),
height = 100,
id = NA,
vertical = FALSE,
width = 100
)
children |
A list of child objects (panes or other containers). Default is an empty list. |
height |
Numeric value for container height, expressed as a percentage (0-100). Default is 100. |
id |
Character string identifying the container. Must be specified, no default. |
vertical |
Logical indicating if children are arranged vertically (TRUE) or horizontally (FALSE). Default is FALSE. |
width |
Numeric value for container width, expressed as a percentage (0-100). Default is 100. |
A new container
object with the specified properties.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.