Progress Circle
You can use the Progress Circle UI Pattern to show the current progress of an operation flow. The progress is incremented in fractions of the circular badge.
How to use the Progress Circle UI Pattern
In this example, we create a button that increments the progress circle each time it's clicked.
-
In Service Studio, in the Toolbox, search for
Progress Circle
.The Progress Circle widget is displayed.
-
From the Toolbox, drag the Progress Circle widget into the Main Content area of your application's screen.
-
Right-click your screen name, select Add Local Variable, and enter a name. In this example, we enter
Count
. -
Select the Progress Circle widget, and on the Properties tab, in the Progress property, enter the relevant logic for the progress percentage.
In this example, we enter the following logic which sets the progress percentage to 4%:
Count / 25 * 100
-
From the Toolbox, drag the Button widget into the Main Content area of your application's screen. In this example, call the button Increment and set the On Click property to a New Client Action that assigns the Count variable to
Count + 1
. -
Select the Progress Circle widget, and on the Properties tab, you can change the Progress Circle's look and feel by setting the (optional) properties, for example, the color settings.
After following these steps and publishing the module, you can test the pattern in your app. The result of this example should look something like the following:
Properties
Property | Description |
---|---|
Progress (Integer): Mandatory | Progress percentage to display. You can use functions or local variables. Usually a number between 0 and 100. |
Text (Text): Optional | Text that displays inside the circle. If no text is specified, the progress percentage is displayed. |
ProgressColor (Text): Optional | The color of the stroke on progress circle. The default value is: "rgba (0,0,0,0.6)". |
TrailColor (Text): Optional | The color of the empty part of the progress circle. The default value is "rgba (0,0,0,0.2)". |
TextColor (Text): Optional | The color of the text inside the circle. The default value is "#333". |
CircleThickness (Integer): Optional | The thickness of the circle that marks the progress. Examples
|
AnimateInitialProgress (Boolean): Optional | If set to True, the progress from zero to the progress value is animated. This is the default. If set to False, the progress is not animated. |
ExtendedClass (Text): Optional | Add custom style classes to the Progress Circle UI Pattern. You define your custom style classes in your application using CSS. Examples
|