delete the figure header ?

조회 수: 59 (최근 30일)
Max Müller
Max Müller 2014년 9월 4일
답변: Eran Bernstein 2021년 10월 19일
Hey Guys, me again. Is it possible to delete the header of a figure. by header I mean the area where the name of the figure and the cross the close the figure are. I just want a empty figure....without anything. I use 'MenuBar', 'None' to delete the menuBar but its not empty enough.
  댓글 수: 2
Hikaru
Hikaru 2014년 9월 4일
Not sure if I understood your question, you might want to show pictures here.
But if you just want an empty figure (just the plot area/without the menu bar) you could use Edit >> Copy figure and paste it somewhere else
Max Müller
Max Müller 2014년 9월 4일
if u type in the command window:
figure('MenuBar', 'None')
you will get an empty figure. But it still has the minimize button, the maximize button and the close button in the top right corner. Also it show the name next to these buttons. Now i want all of it to disappear.

댓글을 달려면 로그인하십시오.

채택된 답변

Adam
Adam 2014년 9월 4일
I don't think you can have a figure without the title bar. It's pretty much a common part of any application window in Windows, nevermind just a Matlab figure.
You can get rid of the default figure number with:
figure('MenuBar', 'None', 'NumberTitle', 'off')
but you still get the title bar with minimize, maximize etc.
  댓글 수: 1
Max Müller
Max Müller 2014년 9월 4일
meh...ok...thanks

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Eran Bernstein
Eran Bernstein 2021년 10월 19일
Got the same problem and fixed it by editing 'WindowState' to fullscreen after removing the menu bar. It's does a similar effect to pressing F11 in Chrome and other programs and pressing 'Esc' afterwards exits fullscreen mode and reverts 'WidowState' back to normal.
fig = figure('MenuBar','none');
fig.WindowState = 'fullscreen';

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by