UI-side function for dynamic valueBox.
Usage
value_box_output(outputId, width = 5)
valueBoxOutput(outputId, width = 5)
infoBoxOutput(outputId, width = 5)
Value
A value box that can be passed to dashboardBody
Functions
valueBoxOutput()
: Create a valueBox output (alias forvalue_box_output
)infoBoxOutput()
: Create a valueBox output (alias forvalue_box_output
)
Examples
if (FALSE) {
valueBoxOutput("value_box")
output$value_box <- renderValueBox({
valueBox(
value = 33.45,
subtitle = "Simple valuebox",
icon = icon("bar chart"),
color = "purple",
width = 5)
})
}