Plot not disappearing when using STOP button and visible off

6 views (last 30 days)
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%handles.stop_now=1;
%guidata(hObject, handles);
set(handles.pushbutton3,'userdata',1)
set(handles.axes4,'visible','off');
I have created pushbutton to stop the programme. Simultaneously it should make the plot in handles.axes4 invisible. However the axes get invisbile put plot remains. How to rectify the same

Accepted Answer

Mehmed Saad
Mehmed Saad on 8 Mar 2021
Read this
Try this
set(handles.axes4,'visible','off');
set(get(handles.axes4,'Children'),'Visible','off')
I think it will work
  5 Comments
Avinav Kumar
Avinav Kumar on 8 Mar 2021
I meant that a graph is being generated in handles.axes4 already. If i want to print that graph or save it can it be done

Sign in to comment.

More Answers (0)

Categories

Find more on Specifying Target for Graphics Output 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!