Copy axes to uiaxes

16 ビュー (過去 30 日間)
PL.R
PL.R 2021 年 10 月 19 日
コメント済み: Adam Danz 2021 年 10 月 20 日
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 ?

採用された回答

Adam Danz
Adam Danz 2021 年 10 月 19 日
編集済み: Adam Danz 2021 年 10 月 19 日
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 件のコメント
PL.R
PL.R 2021 年 10 月 20 日
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 2021 年 10 月 20 日
You could, of course, copy the axes to the uifigure but using a uipanel offers better control, especially in apps.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by