tablerProgress {tablerDash} | R Documentation |
Create a Boostrap 4 progress bar
Description
Build a tabler progress bar
Usage
tablerProgress(value, status = NULL, size = NULL)
Arguments
value |
Progress value. |
status |
Progress status. See https://preview.tabler.io/docs/colors.html. |
size |
Progress bar size: NULL, "xs", "sm", "md". |
Author(s)
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = NULL,
footer = NULL,
title = "test",
body = tablerDashBody(
tablerProgress(value = 10, size = "xs"),
tablerProgress(value = 90, status = "red", size = "sm")
)
),
server = function(input, output) {}
)
}
[Package tablerDash version 0.1.0 Index]