Interactive with graphics in GUI
조회 수: 6 (최근 30일)
이전 댓글 표시
I have context menus on axes. It is called on the left mouse button.

But I cannot bring up this menu on the blue line. This line is built using plot. If I add a polygon, then I can't bring up the menu on it either but it is necessary.
I don't interact with drawn objects.
Maybe there is an opportunity to send the drawing to the background? I ask for help with this.
댓글 수: 0
채택된 답변
Steven Lord
2021년 5월 4일
ax = axes('ButtonDownFcn', @(varargin) disp('hi'));
Click on the axes. MATLAB will display hi in the Command Window.
Now add a line to the axes.
hold on
h = plot(1:10, 1:10);
If you click on the axes but not the line you will still see hi displayed. If you click on (or close enough to) the line you will not see anything new displayed in the Command Window.
Now tell MATLAB to ignore the line when it's determining what you clicked on.
h.HitTest = 'off';
After running that command clicking on the axes and clicking on or near the line will display hi.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!