Skip to content

progress class

A control that can show the progression of some operation.

Methods

__init__()

__init__(
    value=None,
    linear=False,
    show_value=False,
    title=None,
    title_anchor="bottom",
    render=True,
    width=None,
) -> None

Create a new progress element.

Parameters:

Name Type Description Default
value dynamic(int)

The progress percentage represented by the control.
If this property is not set or set to None, the progress control represents an indeterminate state.

None
linear bool

If set to True, the control displays a linear progress indicator instead of a circular one.

False
show_value bool

If set to True, the progress value is shown.

False
title dynamic(str)

The title of the progress indicator.

None
title_anchor str

The anchor of the title.
Possible values are:

  • "bottom"
  • "top"
  • "left"
  • "right"
  • "none" (no title is displayed)

bottom
render dynamic(bool)

If False, this progress indicator is hidden from the page.

True
width Union[str, int]

The width of the progress indicator, in CSS units.

None