Skip to main content
Version: v11.6.2

Progress Circle

Progress Circle widget can be used to show the status of any given event. It can be used to represent the completion progress of a task. Progress may be either indeterminate — meaning it is unclear how much work remains before the task is complete (e.g., the task is waiting for a response from a remote host) — or a numeric value between 0 and a given maximum, explicitly specifying the fraction of work that has completed.

Properties

PropertyDescription
TitleTitle of the progress cirle.
SubtitleSubtitle of the progress circle.
NameThe name is a unique identifier for the progress circle widget.
TypeIndicates the format you want to use to display the progress circle. Choose from - default, - success, - info, - warning, - danger,
AccessibilityHint Any text or an HTML you enter for this property will be shown as a tooltip if the mouse hovers over this widget for 1.5 seconds.
Layout
WidthThe width of your widget can be specified in px or % (i.e 50px, 75%).
HeightThe height of your widget can be specified in px or % (i.e 50px, 75%).
ValueSet this property to a variable to populate the list of values to display.
Default Value
ValueValue is the default value to display value for an editor widget. Note that the display value is just what the user sees initially, and is not always the dataValue returned by the widget.
Minimum ValueEnter minimum number for the Progress bar.
Maximum ValueEnter a maximum number for the Progress bar.
Behavior
ShowShowing determines whether or not a component is visible. It is a bindable property.
Display FormatThe format in which the progress needs to be displayed. You can choose from a list of decimal options like 9, 9.9, 9.99, etc. If the progress bar's data value is 30.7056 and the selected display format is: -  9.9 then label will be rounded as 30.7 -  9.999% then label will be rounded to 30.706%
Caption placementPlacement of progress bar value can be - inside or - hidden

Events

EventDescription
Mouse Events
On-clickThis event handler is called whenever the click event is triggered on a widget.
On-double clickThis event handler is called whenever the double click event is triggered on a widget.
On-mouse enterThis event handler is called whenever the mouse enters the widget.
On-mouse leaveThis event handler is called whenever the mouse leaves the widget.
Touch Events
On-tapThis event handler is called whenever the tab event is triggered on a widget.
On-double tapThis event handler is called whenever the double tap event is triggered on a widget.
On-long tapThis event handler is called whenever the long tap event is triggered on a widget.
Note: Long Tap event is only supported in React Native applications.
Callback Events
On-startThis event handler is called on the start of the progress.
On-completeThis event handler is called on complete of the progress.
On-before updateThis event handler is called on before update of the progress.