Skip to content

Progress Bar

The ProgressBar widget displays a visual progress indicator, showing the progress of an operation or task.

Progress Value and Display

The progress is represented as a value bound to a data model element. The display format can be either a fraction or a percentage.

Maximum Value

The maximum value for the progress bar is determined by the MaximumXPath property. If this property is not set, the default maximum value is 100. If a different maximum value is needed, an XPath expression evaluating to the desired maximum value should be provided.

Example

1
2
3
4
5
6
<ProgressBar Format="Percentage" XPath="num">
    <Hints><![CDATA[]]></Hints>
    <Rules/>
    <MaximumXPath><![CDATA[]]></MaximumXPath>
    <ValueXPath><![CDATA[75]]></ValueXPath>
</ProgressBar>