Re: Use decimals with slider control
Here is an idea in case you need a slider with decimal values.
Add a Slider control to your canvas, the set the properties as follows
- Min - 0
- Max - 10
- Default - 0
- Show value - Off
- Rename the slider to "slider"
The add a text label above the slider, rename the label to "sliderLabel". Set the Text property of the sliderLabel to the following formula - slider.Value / 10
That's it, see the picture attached for the result. 😎