Regarding the GUI update to change the slider values.

3 visualizaciones (últimos 30 días)
Paramjit Yadav
Paramjit Yadav el 24 de Jul. de 2024
Comentada: Voss el 26 de Jul. de 2024
Dear Friends Hello,
I have a querry I request to please help.
I have created a GUI where the values is gratting is selected from the 'select_gratting' as shownin attached figure. I want to change the slider limits based on gratting selected. For example currently it shows - 30 to 550 for 1200 gratting values, but when 2400 gratting selected I want slider limit to change and show 30 to 250 without closing the GUI.
I request to please help, how can I do this.
Thanking you,
Kind regards

Respuesta aceptada

Voss
Voss el 24 de Jul. de 2024
Assuming app.dropdown is your dropdown component and app.slider is your slider component:
if app.dropdown.ValueIndex == 1
app.slider.Limits = [30 550];
else
app.slider.Limits = [30 250];
end
  6 comentarios
Paramjit Yadav
Paramjit Yadav el 26 de Jul. de 2024
Dear @Voss
Thank you so much for help. It worked. Cheers.
Kind regards
Voss
Voss el 26 de Jul. de 2024
You're welcome!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre App Building en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by