필터 지우기
필터 지우기

How does one disable the menu that appears when one hovers on a plot?

조회 수: 6 (최근 30일)
Tahsin Emir Ersoy
Tahsin Emir Ersoy 2022년 11월 1일
댓글: Benjamin Kraus 2023년 3월 21일
How do we remove this thing?
I want nothing to appear / disappear when I am hovering on my plot if possible.

답변 (1개)

Benjamin Kraus
Benjamin Kraus 2022년 11월 1일
You can set the Toolbar property on the axes when you create it.
ax = axes;
ax.Toolbar = [];
If you want that to be the default, you can add something like this to your startup.m.
set(groot,'DefaultAxesToolbarVisible',false);
  댓글 수: 2
FCKOU
FCKOU 2023년 3월 21일
does not work. Executed the command, figures still appear after I hover over them.
Benjamin Kraus
Benjamin Kraus 2023년 3월 21일
@FCKOU What release of MATLAB are you using?

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

카테고리

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

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by