2

我一直在尝试手动或通过编写命令来更改 Matlab 中 clustergram 的字体大小。然而,他们都没有工作。我不知道我哪里做错了。我也在网上搜索过,但只能找到没有答案的类似问题。这是我尝试过的。

clusterobj = clustergram(data,'Rowlabel',c) % c is a cell array of strings for rowlabel
h = addYLabel(clusterobj);
set(h,'FontSize',2);

或类似的东西

addYLabel(clusterobj, c, 'FontSize', 2);

或者

set(gca,'FontSize',2);

他们都没有工作。我只是希望将 c 数组中字符串的字体大小更改为更小的大小。有人知道吗?非常感谢,

4

1 回答 1

5

尝试这个

addYLabel(clusterobj , 'YourLabel', 'FontSize', 4)

这将改变将出现在绘图右侧的 y 标签“YourLabel”的大小。

但是,如果要更改所有的文本标签,那么路要长一些。使用我在TMW 支持页面中找到的代码:

% Make all handles visible. This is necessary because clustergram
% objects are created with 'HandleVisibility' property set to 'off'.
set(0,'ShowHiddenHandles','on')

% Get all handles from root
allhnds = get(0,'Children');

% Find the handles that correspond to clustergram objects
cgfigidx = strmatch('Clustergram',get(allhnds,'Tag'));
cffighnd = allhnds(cgfigidx);
fch = get(cffighnd,'Children');
fch = fch(strmatch('axes',get(fch,'Type')));

% Find all the text objects
txtobj = findall(fch,'Type','Text');

% Set the font size of all text objects in clustergram (at last!)
set(txtobj,'FontSize',5)

编辑: 只需阅读@Jonas 评论,有一种更简单、更优雅的方式,而不是复杂的代码:

figureHandle = gcf;
%# make all text in the figure to size 14 and bold
set(findall(figureHandle,'type','text'),'fontSize',4,'fontWeight','bold')

起首,乔纳斯先生。

于 2013-01-30T00:54:40.213 回答