In my SCADA project, I am trying to visualize the water tank level using an analog tag. The tag value ranges from 0 to 100. I added a graphical element that shows the tank's fill level and linked it to this tag. However, the tank animation is not synchronized with the actual value. For example, when the tag value is 50, the tank still appears empty. How should I adjust the animation’s minimum and maximum values according to the tag’s range?
Tank Level Animation Does Not Reflect the Actual Value
Collapse
X
-
The created component must be assigned to separate ImageIndex parameters, each representing a specific state. Additionally, the component should be configured to reflect dynamic state changes.
The tag linked to this component must be a JavaScript tag. Within the JavaScript code, define the required conditions and update the component’s ImageIndex values accordingly, so that the desired states are visually represented.
Once this configuration is completed, the intended dynamic visualization functionality will be achieved.
Comment