How to enable "Snap to Tick" for a slider in App Designer?
22 次查看(过去 30 天)
显示 更早的评论
Hi, I want to know how to make a slider move discretely rather than continuously. As an example, I want the slider to jump from 1 to 2 when I move it. In other words, I need to enable the "Snap to Tick" feature.
Thanks in advance.
3 个评论
Jesse Beaupre
2023-6-15
In the callback make the slider value rounded and then set the slider position to this rounded value.
回答(1 个)
Kevin Chng
2019-2-22
Is it what you expect? If you are using app designer, on your left hand side bottom, there is configuration you may edit. Empty the minor tick, and modify the major tick to 1,2,3,4,5.
Don't forgot to change the limit as well to 0,5
4 个评论
Fryderyk Kukowski
2024-8-11
@Kevin Chng It does not work.
My slider settings:
I have set up slider functions like this:
function SliderValueChanging(app, event)
app.Slider.Value = round(event.Value);
end
function SliderValueChanged(app, event)
app.Slider.Value = round(app.Slider.Value);
end
But the slider behaves like this:
So the SliderValueChanging has no effect.
Is there a way to fix this?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!