How does one disable the menu that appears when one hovers on a plot?
이전 댓글 표시

How do we remove this thing?
I want nothing to appear / disappear when I am hovering on my plot if possible.
답변 (1개)
Benjamin Kraus
2022년 11월 1일
You can set the Toolbar property on the axes when you create it.
ax = axes;
ax.Toolbar = [];
set(groot,'DefaultAxesToolbarVisible',false);
댓글 수: 2
FCKOU
2023년 3월 21일
does not work. Executed the command, figures still appear after I hover over them.
Benjamin Kraus
2023년 3월 21일
@FCKOU What release of MATLAB are you using?
카테고리
도움말 센터 및 File Exchange에서 Graphics Object Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!