How do I listen for when new axes are added to a figure?
조회 수: 6 (최근 30일)
이전 댓글 표시
I would like to know when new axes are added to a figure. The axes will always have the figure as a parent. I have tried using the ChildAdded event listener, but this does not trigger when, for example, the subplot function creates a new set of axes.
댓글 수: 2
Steven Lord
2019년 6월 6일
How would you use this information if it was available? What's your use case? Knowing what your ultimate goal is may allow us to offer a better solution than trying to listen for new axes being added.
채택된 답변
Jan
2019년 6월 6일
편집: Jan
2019년 6월 6일
What about:
figure('DefaultAxesCreateFcn', 'disp(''hello'')');
subplot(1,2,1)
subplot(1,2,2)
To my surprise this shows 4 hello's in Matlab's LiveEditor. Maybe subplot creates more axes than I expect. Please check this by your own in a Matlab standalone environment.
By the way, such automatic code calls might look cool, but they increase the complexity of the code. Is there really a need to do this automatically? Using a modifed axes command, which performs the wanted job might be easier. Automagical code calls can confuse users massively and it impedes the debugging.
댓글 수: 1
Jan Kappen
2020년 5월 13일
Jan, where does this function come from? It's nowhere documented, not in the figure properties, not in PropertyList of ?matlab.ui.Figure. Is it somewhere in the SuperClassList of the figure?
Background: I'm trying to achieve something similar as the OP. I want to trigger callbacks, when some children have changed. This can be useful for a figure override.
Since figure is sealed, no subclassing but only composition is possible. But I'd like to automatically apply some visual changes to Font Sizes, Axes ticks, Interpreter and so on on all axes/graphical elements being a child of a figure. I do not want to rewrite a complete new class with i.e. customcharts, I'd just like to instantiate a special "figureDin461" and apply very normal plot/subplot/limits etc. commands. Din461 is a standard on how plots shall look like in technical papers and publications, see https://de.wikipedia.org/wiki/DIN_461.
추가 답변 (1개)
Daniel Dolan
2020년 10월 28일
Matthew,
I've been looking for a similar feature that keeps a particular axes on top of everything else. The ChildAdded listener triggers on menu, panel, and uicontrol additions, but not axes creation.
The best I have come up with is to monitor the figure's CurrentAxes property.
L=listener(gcf,'CurrentAxes','PostSet',@(~,~) disp('current axes changed'))
This appears to work for axes and subplot calls.
Dan
댓글 수: 0
참고 항목
카테고리
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!