Filter löschen
Filter löschen

Show image when i use dropdown button

10 Ansichten (letzte 30 Tage)
Adrian-Stefan
Adrian-Stefan am 3 Jan. 2024
Beantwortet: Adam Danz am 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 Kommentar
Ganesh
Ganesh am 3 Jan. 2024
Bearbeitet: Ganesh am 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!

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Adam Danz
Adam Danz am 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.

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by