LinearBar slider with no value display? (solved)

I’d want only “gallons” displayed here without the actual value.
Is there a way to set this directly or would I need to override some method ?

What you are seeing is the normal Slider textbox (a Label). That’s why I think it uses the Slider::valueToText() method. Overriding this should do the trick.

HTH

1 Like

Overriding Slider::getTextFromValue() did the trick, thanks.