How to permanently hide the toolbar for an axes even after replotting

조회 수: 9 (최근 30일)
Jim Hokanson
Jim Hokanson 2024년 9월 20일
댓글: Voss 2024년 9월 21일
I've done a lot of searching and I can't seem to find a way to disable showing the axes toolbar. There are some options that work such as turning the toolbar visibibility off or using the axtoolbar function, but they are temporary. What's the official way of telling a specific axes to stop creating the toolbar?
  댓글 수: 2
Hitesh
Hitesh 2024년 9월 20일
Hi Jim Hokanson,
You can try below command:
fig = figure('Toolbar', 'none');
However, this will prevent all toolbars from being generated, including the axes toolbar.
Jim Hokanson
Jim Hokanson 2024년 9월 20일
편집: Jim Hokanson 2024년 9월 20일
Hi Hitesh,
This works, surprisingly. To me this seems like it should delete the figure's toolbar (and not impact axes). I am curious how to do this for a specific axes though (although technically this approach would be fine for me).
Thanks,
Jim

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

답변 (1개)

Voss
Voss 2024년 9월 20일

You can delete it, e.g.:

delete(gca().Toolbar)
  댓글 수: 4
Jim Hokanson
Jim Hokanson 2024년 9월 21일
That is a solution, but it is temporary. Is it not possible to do this permanently until the axes object is cleared?
Voss
Voss 2024년 9월 21일
Use low-level graphics functions such as line, surface, and patch, rather than their high-level counterparts such as plot, surf, and fill. Low-level functions won't cause the axes toolbar to reappear.

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

카테고리

Help CenterFile Exchange에서 Data Exploration에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by