- I observe the same effect in R2016b, while in R2009a the font size was preserved.
- When I copy an axes object, I'd expect, that the font size of the labels is copied.
Copyobj did not copy attributes/properties
2 次查看(过去 30 天)
显示 更早的评论
Hi,
I want to copy existing axes in a new figure using copyobj. Unfortunately, the attributes did not seem to be copied well. Here the font size of new axes xlabel should be 14 and it is 11. Is this the normal behavior?
>> figure
>> hax=gca;
>> set(get(hax,'xlabel'),'fontsize',14,'string','My xlabel')
>> get(get(hax,'xlabel'),'fontsize')
ans =
14
>> fig2=figure;
>> hax2=copyobj(hax,fig2);
>> get(get(hax2,'xlabel'),'fontsize')
ans =
11
Thx,
Luc
0 个评论
回答(3 个)
Jan
2017-12-10
编辑:Jan
2017-12-10
If this is the "normal" behavior or not depends on the definition of "normal": Do you mean the intended or the usual behavior?
0 个评论
Mack Gardner-Morse
2018-11-30
I agree with Jan. I have the same problem with copyobj in Release 2018a. Both font size and font weight in labels and titles are not preserved using copyobj. I did not see this in much earlier versions of Matlab. Someone should make a bug report.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!