How to prevent line break after blank space when plotting text using annotation textbox?

8 次查看(过去 30 天)
if I try to plot this:
x = 'The blank spaces break line';
figure(1)
annotation('textbox',[0.178 0.425 0 0],'String',x);
At every blank space the text breaks to a new line. How to prevent that?

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-7-5
编辑:KALYAN ACHARJYA 2019-7-5
x = 'The blank spaces break line';
figure(1)
annotation('textbox',[0.1 0.1 .35 .1],'String',x);
%....................^^ Dimension
I have changed it, its now working, more detail dimention example, check here
Hope it helps!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Report Generator 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by