Level Indicator Show Value Without Capacity

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:
image

Custom Label Expression Binding:
image

{RootContainer.Level Indicator.value} + ' ft' 

image

Result:
image

2 Likes