Is there any way to make the level indicator show the value without showing the capacity?
I want it to say "2.32 ft" instead of "2.32 / 23.1 ft"
Is there any way to make the level indicator show the value without showing the capacity?
I want it to say "2.32 ft" instead of "2.32 / 23.1 ft"
The simplest way would be to set the 'Show Value' property to False. Then, put a label component on the level indicator with an expression binding that uses the level indicator's value property followed by the specified unit.
Example:
Level Indicator Properties:
Custom Label Expression Binding:
{RootContainer.Level Indicator.value} + ' ft'
Result: