How to i reset/clear an figure in app designer?
Show older comments
I tried to write
app.UIAxes.cla;
or
cla(app.UIAxes)
but it doesn't do the job.
Yes it clears the figure, but when I replot something, in the same figure, the old data is still there.
How can I remove this previous data/plots?
3 Comments
Geoff Hayes
on 29 Apr 2020
What is your code for when you plot the new data? Are you sure that this new data doesn't include any of the old data?
Fabian Winkler
on 27 May 2020
I have the same problem.
This is how I plot the data in the first button pushed function
hold(app.UIAxes);
plot(app.UIAxes, x_data, y_data)
After this I tried in another button pushed function
cla(app.UIAxes)
and
app.UIAxes.cla
both is not working.
I am using Matlab 2019b
Eric Sargent
on 9 Dec 2020
You also need to specify what kind of hold you want.
Your code is:
hold(app.UIAxes);
Which toggles hold between "on" and "off" and thus could very well be contributing your observed behavior.
You need to specify "on" or "off" as follows:
hold(app.UIAxes,"on");
or
hold(app.UIAxes,"off");
Accepted Answer
More Answers (1)
Hadi Mahmodi
on 20 Jun 2022
cla(app.UIAxes, 'reset')
this worked for me. Matlab 2020a
1 Comment
Rishabh
on 16 May 2025
this works for me too thanks
Categories
Find more on Develop Apps Using App Designer 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!