22 lines
686 B
Markdown
22 lines
686 B
Markdown
# ProgressBar : VisualElement
|
|
This is the progress bar class. It provides a visual representation of progress
|
|
with optional percentage display and customizable colors.
|
|
|
|
## Properties
|
|
|
|
|Property|Type|Default|Description|
|
|
|---|---|---|---|
|
|
|progress|number|0|Current progress value (0-100)
|
|
|showPercentage|boolean|false|Whether to show the percentage text in the center
|
|
|progressColor|color|lime|The color used for the filled portion of the progress bar
|
|
|
|
|
|
## Protected Functions
|
|
|
|
|Method|Returns|Description|
|
|
|---|---|---|
|
|
|ProgressBar:init|ProgressBar|Initializes the ProgressBar instance
|
|
|ProgressBar:render|-|Renders the progress bar with filled portion and optional percentage text
|
|
|
|
|