How can I use a legend in App Designer to toggle line visibility on and off?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 8 Août 2019
Réponse apportée : MathWorks Support Team
le 9 Août 2019
In GUIDE or with 'figure', I can use the 'ItemHitFcn' callback of a 'legend' to toggle the visibility of a line on and off. This is shown in an example below:
However, when I try to set the 'ItemHitFcn' of a legend in App Designer or on a UIFigure, I get an error saying that that functionality is not supported:
Error using matlab.graphics.illustration.Legend/set.ItemHitFcn
Functionality not supported with figures created with the uifigure function. For more information, see Graphics Support in App Designer.
How can I use a legend in App Designer or UIFigures to toggle line visibility on and off?
Réponse acceptée
MathWorks Support Team
le 9 Août 2019
To toggle line visibility on and off, you can make use of the 'ButtonDownFcn' callback of the legend instead. Please see the below link for more information on this callback:
I have attached a sample app that demonstrates how to do this. In summary, the app does the following:
1. It has a UIAxes, and at startup it plots lines and a legend onto this UIAxes
2. It then sets the legend 'ButtonDownFcn' callback to be a custom function that is part of the App itself
3. In this custom function, we use the 'Event data' argument to determine where in the legend was clicked
4. Once we have where was clicked, we can use that to roughly map back to what line number in the legend that corresponds to.
5. We can get all the lines from 'app.UIAxes.Children', and then choose the appropriate line with the line number we got in the previous step.
6. Then, we can toggle the 'Visibility' property of that line to 'off' or 'on' accordingly
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Develop uifigure-Based Apps 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!