Changing font size using xlabel
이전 댓글 표시
[EDIT: Mon Jun 6 16:32:41 UTC 2011 - Reformat - MKF]
Hello, I am putting a label on a graph using xlabel, and I want to increase the size of the font (to about 30) and possibly bold it (although, this is less important and I have not yet tried this).
I have tired using:
xlabel(text, 'FontSize', 30)
but this produces no notable change in the font size. Thank you in advance for your help!
Edit:
Using:
h = xlabel(printnombrejpg,'FontSize',60);
get(h)
Returns:
Annotation = [ (1 by 1) hg.Annotation array]
BackgroundColor = none
Color = [0 0 0]
DisplayName =
EdgeColor = none
Editing = off
Extent = [-435.849 -11.5896 837.736 8.69217]
FontAngle = normal
FontName = Helvetica
FontSize = [60]
FontUnits = points
FontWeight = normal
HorizontalAlignment = center
LineStyle = -
LineWidth = [0.5]
Margin = [2]
Position = [-5.76923 -4.46355 1.00011]
Rotation = [0]
String = cr45f__ch_24
Units = data
Interpreter = tex
VerticalAlignment = cap
BeingDeleted = off
ButtonDownFcn =
Children = []
Clipping = off
CreateFcn =
DeleteFcn =
BusyAction = queue
HandleVisibility = off
HitTest = on
Interruptible = on
Parent = [222.028]
Selected = off
SelectionHighlight = on
Tag =
Type = text
UIContextMenu = []
UserData = []
Visible = on
댓글 수: 4
Arturo Moncada-Torres
2011년 6월 6일
Mmm, pretty weird. Do you have the code?
Robert Cumming
2011년 6월 6일
try changing the color just to make sure you are interacting with the correct handle
A
2011년 6월 6일
Brando Miranda
2017년 3월 30일
do you know how to do this in the GUI?
채택된 답변
추가 답변 (2개)
Paulo Silva
2011년 6월 6일
h=xlabel('mylabel') %or h=get(gca,'xlabel')
set(h, 'FontSize', 30)
set(h,'FontWeight','bold') %bold font
댓글 수: 1
Brando Miranda
2017년 3월 30일
do you know how to do this in the GUI?
Chirag Gupta
2011년 6월 6일
Well it works for me!
I would suggest you try:
h = xlabel(text,'FontSize',30);
get(h)
and examine the properties. Specifically FontUnits
댓글 수: 3
A
2011년 6월 6일
A
2011년 6월 6일
Brando Miranda
2017년 3월 30일
do you know how to do this in the GUI?
카테고리
도움말 센터 및 File Exchange에서 Graphics Object Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!