Figure without border?

103 visualizaciones (últimos 30 días)
Marina
Marina el 10 de Jul. de 2019
Comentada: Marina el 10 de Jul. de 2019
hello,
Can you make a figure without a border? I need the data to ocupy the entire figure window. Is this possible?
thanks,
marina

Respuesta aceptada

Adam Danz
Adam Danz el 10 de Jul. de 2019
Editada: Adam Danz el 10 de Jul. de 2019
fh = figure('Menu','none','ToolBar','none');
ah = axes('Units','Normalize','Position',[0 0 1 1])
ADDENDUM
If you're using axis square you'll need to make sure the figure position is also square. Here's a demo following the block above:
plot(rand(1000,1),rand(1000,1),'ko')
axis(ah, 'square')
fh.Position(3) = fh.Position(4); %set width equal to height
  2 comentarios
Marina
Marina el 10 de Jul. de 2019
thanks! This eliminates the top and bottom border but I still have a left/right white border. Any ideas? :)
Adam Danz
Adam Danz el 10 de Jul. de 2019
Editada: Adam Danz el 10 de Jul. de 2019
It eliminates all borders except for the figure window itself. I've added some data to the axes to show that.
If you're using axis square see the addendum in my answer.

Iniciar sesión para comentar.

Más respuestas (1)

Steven Lord
Steven Lord el 10 de Jul. de 2019
When you say "figure" do you mean the figure object (the window on the screen) or the axes contained in the figure? I've seen people use that word in both meanings.
If you want to maximize the figure object (the window on the screen) and you're using release R2018a or later, use the WindowState property of the figure object.
If you want to make the axes span the entirety of the figure window, do as Adam Danz suggested.
If you want the axes to span the entirety of a maximized figure object, combine Adam's suggestion and mine. Maximize the figure then make the axes with 'Units', 'normalized' and 'Position', [0 0 1 1].
  1 comentario
Marina
Marina el 10 de Jul. de 2019
I meant maximize the axes in the figure so no blank border around is left. Your answers worked great. Thanks for taking the time.

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by