powered by
Create a progress bar within card container
progressInput( id, label = "", value = "35%", outer.value = value, color = color.choice, vertical = FALSE, size = c("m", "s", "l"), striped = FALSE )
an HTML content to display a progress bar
id of the container
title of the progress bar
value of the progress bar in percent
value shown next to title
color of the progress bar
if the progress bar should be vertical or horizontal
size of progress bar
whether to show the progressed bar background as striped
if (interactive()) { library(shiny) library(card.pro) # Without much modification of defaults progressInput(id="id1") # Set color and value progressInput(id="id1", value = "90%", color = "green") }
Run the code above in your browser using DataLab