render_value_box {semantic.dashboard} | R Documentation |
Create a value box output.
Description
Server-side function for dynamic valueBox.
Usage
render_value_box(expr, env = parent.frame(), quoted = FALSE)
renderValueBox(expr, env = parent.frame(), quoted = FALSE)
renderInfoBox(expr, env = parent.frame(), quoted = FALSE)
Arguments
expr |
ValueBox. |
env |
The environment in which to evaluate expr. |
quoted |
Is expr a quoted expression (with |
Value
A dynamic valueBox that can be assigned to output.
Functions
-
renderValueBox
: Create a value box output (alias forrender_value_box
) -
renderInfoBox
: Create a value box output (alias forrender_value_box
)
Examples
## Not run:
valueBoxOutput("value_box")
output$value_box <- renderValueBox({
valueBox(
value = 33.45,
subtitle = "Simple valuebox",
icon = icon("bar chart"),
color = "purple",
width = 5)
})
## End(Not run)
[Package semantic.dashboard version 0.2.1 Index]