
AdminLTE3 progress bar
bs4ProgressBar(value, min = 0, max = 100, vertical = FALSE,
striped = FALSE, status = c("primary", "warning", "danger", "info",
"success"), width = "80%", height = "40%")
Progress bar value
Progress bar minimum value.
Progress bar maximum value.
Whether to display the progress bar in vertical mode. FALSE by default.
Whether the progress bar is striped or not. FALSE by default.
Progress bar status. "primary", "success", "warning", "danger" or "info".
Progress bar width (only if vertical is FALSE).
Progress bar height (only if vertical is TRUE).
# NOT RUN {
if(interactive()){
library(shiny)
library(bs4Dash)
shiny::shinyApp(
ui = bs4DashPage(
navbar = bs4DashNavbar(),
sidebar = bs4DashSidebar(),
controlbar = bs4DashControlbar(),
footer = bs4DashFooter(),
title = "test",
body = bs4DashBody(
title = "Carousel",
bs4Card(
title = "Progress bars",
footer = tagList(
bs4ProgressBar(
value = 5,
striped = FALSE,
status = "info"
),
bs4ProgressBar(
value = 5,
striped = TRUE,
status = "warning",
width = "20%"
)
),
bs4ProgressBar(
value = 80,
vertical = TRUE,
status = "success"
),
bs4ProgressBar(
value = 100,
vertical = TRUE,
striped = TRUE,
status = "danger",
height = "80%"
)
)
)
),
server = function(input, output) {}
)
}
# }
Run the code above in your browser using DataLab