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
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by