Figure without border?

96 ビュー (過去 30 日間)
Marina
Marina 2019 年 7 月 10 日
コメント済み: Marina 2019 年 7 月 10 日
hello,
Can you make a figure without a border? I need the data to ocupy the entire figure window. Is this possible?
thanks,
marina

採用された回答

Adam Danz
Adam Danz 2019 年 7 月 10 日
編集済み: Adam Danz 2019 年 7 月 10 日
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 件のコメント
Marina
Marina 2019 年 7 月 10 日
thanks! This eliminates the top and bottom border but I still have a left/right white border. Any ideas? :)
Adam Danz
Adam Danz 2019 年 7 月 10 日
編集済み: Adam Danz 2019 年 7 月 10 日
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.

サインインしてコメントする。

その他の回答 (1 件)

Steven Lord
Steven Lord 2019 年 7 月 10 日
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 件のコメント
Marina
Marina 2019 年 7 月 10 日
I meant maximize the axes in the figure so no blank border around is left. Your answers worked great. Thanks for taking the time.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by