Borrar filtros
Borrar filtros

Copy axes to uiaxes

16 visualizaciones (últimos 30 días)
PL.R
PL.R el 19 de Oct. de 2021
Comentada: Adam Danz el 20 de Oct. de 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 ?

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by