Clear Filters
Clear Filters

Show image when i use dropdown button

10 views (last 30 days)
Adrian-Stefan
Adrian-Stefan on 3 Jan 2024
Answered: Adam Danz on 3 Jan 2024
Hello! When i select for example "Argentina", i want to show the image in that location where the dropdown button is, but it opens another window. Can someone please help me?
  1 Comment
Ganesh
Ganesh on 3 Jan 2024
Edited: Ganesh on 3 Jan 2024
Hi Adrian-Stefan,
It's unclear as to what functions are currently being implemented, but a solution to this problem is stated below.
You can try using the "uiimage()" function in matlab to create an image component. You can modify the component on the callback() function when the dropdown option is clicked.
Please refer to the following documentation on using this function:
Hope this helps!

Sign in to comment.

Answers (1)

Adam Danz
Adam Danz on 3 Jan 2024
You need to specify the axes handle so the image is generated in the intended axes. For example,
image(app.UIAxes,__)
imagesc(app.UIAxes,__)
% etc...
The reason this is happening is because by default, the app's figure handle is not visible. That is, the figure's HandleVisibility is set to off. When you don't specify an axes handle, MATLAB looks for the current axes but can't find it because the figure's handle is not visible.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!