How can I make bigger the names plotted in the X axis from a variable?

조회 수: 1 (최근 30일)
flashpode
flashpode 2022년 5월 12일
댓글: Jan 2022년 5월 12일
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.
  댓글 수: 2
Jan
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 CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by