If you copy a progress bar that has already been assigned to a tag, the copied version keeps the referance to the min max values of the original version. You can change the copied version and then once you save/commit the window then reopen window, the min max values match the go back to origal version.
The progress bar does not work with values less than 1. For example, say you need to display a decimal value that ranges between 0 to 1. The progress bar either displays 0 or 1 and nothing inbetween.
When you tag onto a component more than one binding occurs. The progress bar’s value, min, max and tooltip get bound to the tag. All of the bold properties are bound. When you copy and paste the component you must change all bindings in order to point to the correct tag.
If you change a property value that is bound to something, then re-opening the window will revert the value back. Look for whether or not the property is bold or bound.
The progress bar’s value is an integer, so you cannot use a floating point value. However, you can bind the value to an expression converting the floating point value to an integer. You can scale it up.