Clearing a Panel - AppDesigner

조회 수: 96 (최근 30일)
Garrett Valley
Garrett Valley 2021년 7월 12일
답변: Jonathan Wharrier 2024년 1월 26일
Hi, I am creating an App that utilizes the add-on myaxisc, which creates figures with many y axis in a panel object. I am looking for a way to completely clear the panel, as I am replotting many times based on user input. Would really appreciate any help
Thanks,
Garrett
  댓글 수: 1
Jordan
Jordan 2023년 8월 9일
Can you share the code for using myaxisc in app designer? I just found this add-on and want to understand it a bit better.
Thanks!

댓글을 달려면 로그인하십시오.

채택된 답변

Tanay Gupta
Tanay Gupta 2021년 7월 13일
In App Designer, objects share data with each other through properties. You can share these properties between various objects. Every time the user gives an input an event is generated. You can code how the graph changes when this happens by editing the callback section of that object (e.g. slider, input box, etc). Using these two tools you can change the output in any way you like. Please refer the documentation for more information.
For e.g. if you want to clear the plotted data when a button is pressed you can save the data as a property (e.g. as plotted_Data) while plotting and run the following commands.
Assuming you have a button. The layout will be something like this:
function ButtonPushed(app, event)
delete(plotted_Data)
end
Using the above command you can clear the plotted the data from the graph in the panel.
If you want to resize the axis then you can change the property of the UIAxes as follows:
%The range can be dynamic based on the input
function ButtonPushed(app, event)
app.UIAxes.XTick = [0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2];
end
To delete the axis you can use the command below:
function ButtonPushed(app, event)
delete(app.UIAxes);
end
You can recreate the axis like this
function ButtonPushed(app, event)
app.UIAxes = uiaxes(app.Panel);
title(app.UIAxes, 'Title')
xlabel(app.UIAxes, 'X')
ylabel(app.UIAxes, 'Y')
zlabel(app.UIAxes, 'Z')
app.UIAxes.XTick = [0 0.2 0.4 0.6 0.8 1];
app.UIAxes.XTickLabel = {'0'; '0.2'; '0.4'; '0.6'; '0.8'; '1'};
app.UIAxes.Position = [78 67 259 185];
end

추가 답변 (1개)

Jonathan Wharrier
Jonathan Wharrier 2024년 1월 26일
There is a very simple way...
delete(app.panelName.children);
this will completely clear the panel of all objects attached to it.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by