How does one disable the menu that appears when one hovers on a plot?
조회 수: 7 (최근 30일)
이전 댓글 표시
How do we remove this thing?
I want nothing to appear / disappear when I am hovering on my plot if possible.
댓글 수: 0
답변 (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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Object Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!