Arguments
session
The Shiny session object, as provided by
shinyServer
to the server function.
min
The value that represents the starting point of the
progress bar. Must be less tham max
.
max
The value that represents the end of the progress bar.
Must be greater than min
.
message
A single-element character vector; the message to be
displayed to the user, or NULL
to hide the current message
(if any).
detail
A single-element character vector; the detail message
to be displayed to the user, or NULL
to hide the current
detail message (if any). The detail message will be shown with a
de-emphasized appearance relative to message
.
value
A numeric value at which to set
the progress bar, relative to min
and max
.
NULL
hides the progress bar, if it is currently visible.
style
Progress display style. If "notification"
(the default),
the progress indicator will show using Shiny's notification API. If
"old"
, use the same HTML and CSS used in Shiny 0.13.2 and below
(this is for backward-compatibility).
amount
Single-element numeric vector; the value at which to set
the progress bar, relative to min
and max
.
NULL
hides the progress bar, if it is currently visible.
amount
For the inc()
method, a numeric value to increment the
progress bar.