Smaller slider increment

Is there a way to get the slider component to move in tenth increments? I am using sliders to vary the Y axis on a classic chart. The problem is that my data ranges from 0 to 4 and the slider seems to move in the smallest increment of 1. I need to be able to move the Y axis in tenths if possible.

Not directly, no, but you can put a dynamic property on the slider that is a double called realValue, which is bound to an expression like

{Root Container.Slider.value}/10.0

and then make the max 40 instead of 4, that will simulate moving it by tenths.