Borrar filtros
Borrar filtros

How can I use a legend in App Designer to toggle line visibility on and off?

11 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 9 de Ag. de 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

Más respuestas (0)

Categorías

Más información sobre Develop uifigure-Based Apps en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Productos


Versión

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by