Text location
조회 수: 285 (최근 30일)
이전 댓글 표시
Is possible put a text in a determinated position, for example, at the top left?
댓글 수: 0
채택된 답변
Walter Roberson
2011년 2월 6일
text(0,1,'Your String','Units','normalized')
댓글 수: 3
Walter Roberson
2011년 2월 6일
And the OP then talks about text() needing coordinates to locate the text within the figure, which is not something that text() ever did. We conclude that the OP was using the wrong terminology.
Walter Roberson
2018년 10월 5일
h = annotation('textbox', [0 1 0 0], 'String', 'YourString', 'FitBoxToText', true);
추가 답변 (4개)
Jan
2011년 2월 6일
FigH = figure;
AxesH = axes('Parent', FigH, ...
'Units', 'normalized', ...
'Position', [0, 0, 1, 1], ...
'Visible', 'off', ...
'XLim', [0, 1], ...
'YLim', [0, 1], ...
'NextPlot', 'add');
TextH = text(0,1, 'Top left', ...
'HorizontalAlignment', 'left', ...
'VerticalAlignment', 'top');
Now you can inspect the properties with "get(TextH)" or "set(TextH)" for further adjustments.
Sometimes a UICONTROL('Style', 'text') is easier, because it does not need the invisible full-figure AXES object.
댓글 수: 0
RonE
2018년 10월 4일
I find the documentation on 'text' to be nearly useless in this matter. The following places text at the top left of the graph.
ylimits = ylim;
ymax = ylimits(2);
vert_spacing = ymax/47; %may have to experiment with this #
text(10, ymax-vert_spacing*1, 'Line 1');
text(10, ymax-vert_spacing*2, 'Line 2');
...
댓글 수: 0
Jiro Doke
2011년 2월 6일
What do you mean "top left"? Top left of the figure? Top left of the screen? Top left of the axes?
댓글 수: 3
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!