How to descrease the size of a textbox
조회 수: 2 (최근 30일)
이전 댓글 표시
LS,
I would like to decrease the size around the text that is plotted in a graph. I need a background color to make the text readable but the box is now too large. Is there a way to decrease the size of the text box?
Best,
Frits
댓글 수: 0
답변 (1개)
Fangjun Jiang
2011년 6월 29일
h=text(.5,.5,'this is my text','BackgroundColor',[.5 .5 .5]);
get(h)
to see a list of the properties, use set(h) to change the properties. Maybe the 'Position' is the property that you are looking for?
set(h,'BackgroundColor',[1 0 0])
댓글 수: 3
Fangjun Jiang
2011년 6월 29일
I have not found the right properties yet. Maybe need more poking around. But what I saw is the box is closely around the text. What do you mean the textbox is too large? Can you show a sanpshot?
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!