Borrar filtros
Borrar filtros

Is it possible to create textbox with fixed width on a plot?

9 visualizaciones (últimos 30 días)
Mr M.
Mr M. el 26 de Mayo de 2015
Editada: FM el 13 de Jul. de 2022
I would like to add paragraph with fixed width as a caption to the figure, but I don't want to set by hand the linebreaks!

Respuestas (1)

Ashish Gudla
Ashish Gudla el 27 de Mayo de 2015
You can use the annotation textbox with the 'FitBoxToText' property set to 'off'. This will wrap the text to fit the width of the text box.
Ex:
>>figure; % new figure window
>>plot(1:10);
>>annotation('textbox', [0.2,0.4,0.5,0.1],...
'String', 'This is a test string.This is a test string.This is a test string.This is a test string.',...
'FitBoxToText','off');
You can refer to other properties here:
  1 comentario
FM
FM el 13 de Jul. de 2022
Editada: FM el 13 de Jul. de 2022
The 4 position parameters seem to relative to the entire figure rather than an pair of axes in a subplot. Can this be done within a subplot?
AFTERNOTE: With help from [https://www.mathworks.com/matlabcentral/answers/356708-how-to-position-a-annotation-in-subplot-southeast], I supplied "get(gca,'Position')" as the "dim" name/value parameter:
annotation('textbox',get(gca,'Position'),String="The quick brown fox",FitBoxToText='off')
Unfortunately, the text box's left edge overlaps with the y-axis labels!
A work-around that doesn't involve manual customization of the "Position" based on Figure size and number of subplots would be welcome. Thanks!
P.S. I currently finagle the position by manually resizing the text box, issuing "get(gco,'Position'), then editing the "annotation" command to use this position. Ideally this would not be necessary.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by