boxplot XTick label size

2 visualizaciones (últimos 30 días)
Carlos Minjarez
Carlos Minjarez el 3 de Mzo. de 2011
Comentada: desword jacky el 11 de Dic. de 2016
Hi Matlab Users I have a problem with the boxplot function. I am doing the following:
axes('FontSize', 18,'FontName','arial');
boxplot(R,'labels',{'cocos','sandias','melones'})
la problem here is that XTickmark size does not chage to 18 points size while the YTickmark it does.
Do you have any idea of how I can fix this?
Thanks
carlos

Respuestas (2)

Walter Roberson
Walter Roberson el 3 de Mzo. de 2011
set(findobj(gca,'Type','text'),'FontSize',18)
boxplot() uses the default axes labeling for the Y axes, but for the X axes, it uses text() to put the labels in place and it does not grab the axes FontSize when it does so.
Note: it is likely that with an 18 point font that the labels will overlap the y=0 axes.
  5 comentarios
Peng Zhong
Peng Zhong el 26 de Ag. de 2014
thank you,Nick. Very helpful.
desword jacky
desword jacky el 11 de Dic. de 2016
how to deal with the overlapping between the xticklabel and xlabel when the fontsize is 25?

Iniciar sesión para comentar.


Sav Deb
Sav Deb el 29 de Nov. de 2012
How to do the same but in Property Editor

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by