add a function to be executed for a subplot ButtonDownFcn event
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I need to add a function to the ButtonDownFcn event of a subplot which will open another figure.
I am using:
subplot(3,4,1,'ButtonDownFcn',{@mySubplotCallback, arrData});
and
function mySubplotCallback(src,eventdata,x)
figure (100)
pie(x);
end
Where am going wrong here?
0 commentaires
Réponses (2)
Fangjun Jiang
le 13 Oct 2011
Nothing is wrong. You just need to move your cursor over the subplot and then press button down. It worked for me as I tried.
subplot(3,4,1,'ButtonDownFcn',{@mySubplotCallback, rand(5,1)})
I see the problem. If the following two lines are executed, it looks like the pie chart blocked the subplot axes such that the button down function callback is not triggered.
subplot(3,4,1,'ButtonDownFcn',{@mySubplotCallback, rand(5,1)});
pie(rand(5,1))
One solution is to do this:
subplot(3,4,1,'ButtonDownFcn',{@mySubplotCallback, rand(5,1)});
p=pie(rand(5,1));
set(p,'ButtonDownFcn',{@mySubplotCallback, rand(5,1)});
0 commentaires
Voir également
Catégories
En savoir plus sur Subplots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!