Copy axes to uiaxes

16 Ansichten (letzte 30 Tage)
PL.R
PL.R am 19 Okt. 2021
Kommentiert: Adam Danz am 20 Okt. 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 ?

Akzeptierte Antwort

Adam Danz
Adam Danz am 19 Okt. 2021
Bearbeitet: Adam Danz am 19 Okt. 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 Kommentare
PL.R
PL.R am 20 Okt. 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 am 20 Okt. 2021
You could, of course, copy the axes to the uifigure but using a uipanel offers better control, especially in apps.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by