Copy axes to uiaxes

19 views (last 30 days)
PL.R
PL.R on 19 Oct 2021
Commented: Adam Danz on 20 Oct 2021
Hello,
I would like to copy axes to uiaxes, but I cannot find any way to achieve this properly. This would be a reverse of this functionnality https://www.mathworks.com/matlabcentral/fileexchange/73103-copyuiaxes
The goal is to allow an user to plot its data using the usual MATLAB way of doing, then use the created axe in a MATLAB app, inside an uiaxes component.
% User plots its data using usual MATLAB way
ax = plot(time, data);
xtitle('My title'); xlabel('Time (s)'); ylabel('Data'); grid on; xlim(limits) % and stuff like this
% Plot is then "projected" inside uiaxes component through inputs arguments
my_app(ax)
Startup function inside the app should be something like : (pseudo-code)
function startupFcn(app, user_ax)
app.my_axes = user_ax;
end
I am really suprised there is no built-in constructor being able to achieve this.
I would like axes properties to be kept (like title, legend, grid, labels, xlim, ylim...) and if possible even functions callbacks the user might have deisgned previously. (this last point is not the most important, though)
Suprisingly, I neither found nothing on Mathworks forums.
Any ideas ?

Accepted Answer

Adam Danz
Adam Danz on 19 Oct 2021
Edited: Adam Danz on 19 Oct 2021
Use copyobj instead to copy the entire external axes to a uipanel in your app.
Demo:
% Simulate the app with a uifigure and uipanel
uifig = uifigure();
uipan = uipanel(uifig);
% Create external plot
fig = figure();
ax = axes(fig);
hold(ax,'on')
plot(ax, magic(5))
plot(ax, magic(6),'*')
% Copy axes to uipanel
newax = copyobj(ax, uipan)
  2 Comments
PL.R
PL.R on 20 Oct 2021
Thank you very much !
It is exactly what I was trying to achieve, but using copyobj(ax, uiaxes), which did not work. Using copyobj(ax, uipanel) does exaclty the trick.
Adam Danz
Adam Danz on 20 Oct 2021
You could, of course, copy the axes to the uifigure but using a uipanel offers better control, especially in apps.

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!