标签图中的Matlab注释

时间:2018-11-01 10:33:38

标签: matlab tabs annotations figure tabbed

在Matlab图形上添加注释时,一切都很好。但是,当我尝试创建带选项卡的图形(由多个选项卡组成)时,注释消失。似乎它们已发送到图像的背景,但是我不确定如何解决。有人有解决方案吗?我使用的代码是:

f1 = figure('WindowStyle','normal');
tabgroup = uitabgroup(f1);
tab1 = uitab(tabgroup, 'Title', 'Plot A');
ax1 = axes('Parent', tab1);
plot(1:10,(1:10).^2)
annotation('rectangle',[0.5 0.5 0.1 0.1],'LineWidth',2.5)

我正在使用Matlab R2018a

1 个答案:

答案 0 :(得分:3)

强制将注释显示在所需的标签上:

annotation(tab1,'rectangle',[0.5 0.5 0.1 0.1],'LineWidth',2.5)