Skip to main content

Linear Progress

Overview

A visible component to display the download or upload progress

Component Properties

PropertyDescription
MaxValueIt sets the maximum value or completion of the task. It represents the endpoint of the progress. In this case, the progress bar is divided into 100 units, and reaching the maximum value (100) signifies the completion of the task. You can adjust this property to match the maximum value corresponding to the completion of your specific task.
ValueIt sets the current status or completion of the task. You can dynamically update this value using Update Progress block to reflect the changing progress.

Blocks

Methods

Update Progress

updates the progress by given value

loading block...

Input ParamsTypeDescription
valueNumberThe current status of the progress

Properties

value

Returns: Number

gets the current progress value

loading block...

max_value

Accepts: Number

sets the progress maximum value

loading block...

max_value

Returns: Number

gets the progress maximum value

loading block...

hide

Accepts: Boolean

Hides the component if the input is true and shows it if the input is false

loading block...

hidden

Returns: Boolean

Returns true if the component is hidden and false if it is not

loading block...