Remove Image Titles in GUI

1 view (last 30 days)
Sehrish
Sehrish on 12 Aug 2012
My GUI has multiple axes, On button press the axes have to be updated and some images have to be removed, if i use "cla" command then the image is deleted but the title remains there. how can i overcome this problem, can anyone help me. How to do the same thing with uitable, means clear the contents and make it invisible on button click?

Accepted Answer

Tom
Tom on 12 Aug 2012
You need to reset the axes:
cla('reset')
or better for a GUI:
cla(axes_handle,'reset')
  2 Comments
Sehrish
Sehrish on 12 Aug 2012
thank u!
Oleg Komarov
Oleg Komarov on 12 Aug 2012
Please accept Tom's answer.

Sign in to comment.

More Answers (0)

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!