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 |
---|---|---|---|
|
int
|
The progress percentage represented by the control. |
None
|
|
bool
|
If set to True, the control displays a linear progress indicator instead of a circular one. |
False
|
|
bool
|
If set to True, the progress value is shown. |
False
|
|
str
|
The title of the progress indicator. |
None
|
|
str
|
The anchor of the title.
|
bottom
|
|
bool
|
If False, this progress indicator is hidden from the page. |
True
|
|
Union[str, int]
|
The width of this progress indicator, in CSS units. |
None
|