How do I listen for when new axes are added to a figure?
6 views (last 30 days)
Show older comments
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 Comments
Steven Lord
on 6 Jun 2019
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.
Accepted Answer
Jan
on 6 Jun 2019
Edited: Jan
on 6 Jun 2019
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 Comment
Jan Kappen
on 13 May 2020
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.
More Answers (1)
Daniel Dolan
on 28 Oct 2020
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 Comments
See Also
Categories
Find more on Graphics Object Properties in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!