How can I make bigger the names plotted in the X axis from a variable?
1 次查看(过去 30 天)
显示 更早的评论
so I want to mae the names of the Variable T bigger so that I can read it clearly. How can I do it? Here is my code:
T = ["juny AIS1" "juny AIS2" "març AIS1" "març AIS2" "octubre AIS1" "octubre AIS2"];
format shortG
C = [NmeanJuny,PmeanJuny, NmeanMars,PmeanMars, NmeanOct,PmeanOct];
T=categorical(T); % turn into categorical variable
colors = get(gca(),'ColorOrder');
cdata = colors(ones(numel(T),1),:);
cdata([2 4 6],:) = [ ...
1 0 0; ...
1 0 0; ...
1 0 0];
b = bar(T,C,'FaceColor','flat','CData',cdata);
text(1:length(C),C,num2str(round(C')),'vert','bottom','horiz','center','FontSize',16);
ylabel('Missatges erronis')
title('Mitja mensual de missatges erronis')
box off
Thank you In advance!!
采纳的回答
Subhodh Sharma
2022-5-12
编辑:Subhodh Sharma
2022-5-12
Just increase the xticklable size..
dx=18
b = get(gca,'XTickLabel');
set(gca,'XTickLabel',b,'fontsize',dx)
Increase the fontsize with dx. Hope it works.
2 个评论
Jan
2022-5-12
@Subhodh Sharma: You can omit to set the handle of the XTickLabels to the handle of the XTickLabels. Simpler:
dx = 18;
set(gca, 'fontsize', dx);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Axis Labels 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!