Progress Bar Component

Progress Bar

Function: a!progressBarField()

Displays a completion percentage, such as receiving all the necessary approval tasks, completing a certain number of on-boarding processes, or completing a single process. Similar to the Gauge, but with a bar style rather than a circular style.

Parameters

Name Keyword Types Description

Label

label

Text

Text to display as the field label.

Instructions

instructions

Text

Supplemental text about this field.

Percentage

percentage

Number (Integer)

Number to display between 0 and 100.

Label Position

labelPosition

Text

Determines where the label appears. Valid values:

  • "ABOVE" (default) Displays the label above the component.
  • "ADJACENT" Displays the label to the left of the component.
  • "COLLAPSED" Hides the label. The label will still be read by screen readers; see accessibility considerations for more information.
  • "JUSTIFIED" Aligns the label alongside the component starting at the edge of the page.

Help Tooltip

helpTooltip

Text

Displays a help icon with the specified text as a tooltip. The tooltip displays a maximum of 500 characters. The help icon does not show when the label position is "COLLAPSED".

Accessibility Text

accessibilityText

Text

Additional text to be announced by screen readers. Used only for accessibility; produces no visible change.

Color

color

Text

Determines the color. Valid values: Any valid hex color or "ACCENT" (default), "POSITIVE", "NEGATIVE", "WARN".

Visibility

showWhen

Boolean

Determines whether the component is displayed on the interface. When set to false, the component is hidden and is not evaluated. Default: true.

Style

style

Text

Thickness of the progress bar. Valid values: "THIN" (default), "THICK".

Show Percentage

showPercentage

Boolean

Determines whether the progress bar displays the percentage. Default: true.

Notes

  • If an expression for the percentage argument results in a decimal number, the system automatically casts the value to an integer.
  • If the percentage argument is negative or null, the bar renders with 0% filled and displays the provided percentage as a label on the bar.
  • If the percentage argument is greater than 100, the bar renders with 100% filled and displays the provided percentage as a label on the bar.
  • We recommend you use thin styling on the progress bar when working with a small space on an interface, such as within grids.

Examples

Copy and paste an example into the INTERFACE DEFINITION in EXPRESSION MODE to see it displayed.

Thick Progress Bar with Percentage Details in the Instructions

1
2
3
4
5
6
7
8
9
10
=a!localVariables(
  local!completedTasks: 143,
  local!totalTasks: 150,
  a!progressBarField(
    label: "Tasks Completed",
    instructions: local!completedTasks & " of " & local!totalTasks & " done",
    percentage: (local!completedTasks / local!totalTasks) * 100,
    style: "THICK"
  )
)

Displays the following:

Thin Progress Bar with Color Based on Value

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
=a!localVariables(
  local!evals: {
    {name: "David Rogers", completedEvals: 6, totalEvals: 14},
    {name: "Marigold Brown", completedEvals: 13, totalEvals: 15}
  },
  {
    a!richTextDisplayField(
      value: {
        a!richTextHeader(
          text: {"Evaluations Completed"},
          size: "SMALL"
        )
      }
    ),
    a!forEach(
      items: local!evals,
      expression: a!progressBarField(
        label: fv!item.name,
        percentage: tointeger(fv!item.completedEvals)/tointeger(fv!item.totalEvals) * 100,
        color: if(tointeger(fv!item.completedEvals)/tointeger(fv!item.totalEvals) * 100 > 60, "POSITIVE", "NEGATIVE")
      )
    )
  })

Open in Github Built: Wed, Aug 17, 2022 (01:05:05 PM)

On This Page

FEEDBACK