Effacer les filtres
Effacer les filtres

StandAlone Matlab app don't show the points with the interection with the mouse

7 vues (au cours des 30 derniers jours)
Nélio Dias
Nélio Dias le 24 Juil 2022
Commenté : Nico le 28 Juin 2024 à 11:10
I am building an app in matlab app desing that the user needs to interact with the graph with a mouse and in the app designer appears the points like in the figure. But when I create the standAlone app, this interaction with the graph disappears. Does someone know how to solve it?
  12 commentaires
Nico
Nico le 28 Juin 2024 à 11:09
You can select the axes or the figure. For me it worked by using the app.UIAxes

Connectez-vous pour commenter.

Réponses (1)

Mohammad Sami
Mohammad Sami le 26 Juil 2022
Modifié(e) : Mohammad Sami le 26 Juil 2022
Enable or Disable Built-In Interactions
To control whether a set of built-in interactions is enabled within a chart, use the disableDefaultInteractivity and enableDefaultInteractivity functions. Sometimes MATLAB® automatically disables the built-in interactions. For example, they might be disabled for charts that have special features, or when you implement certain callbacks such as a WindowScrollWheelFcn.
You can try calling enableDefaultInteractivity after you have plot something on the UIAxes
function plotfunction(app,....)
% ... code to plot ....%
enableDefaultInteractivity(app.X); % app.X where X is the name of your UIAxes object
% alternative method to only enable dataTipInteractions.
app.X.Interactions = [dataTipInteraction]; % app.X where X is the name of your UIAxes object
end
More details can be found at the link below.
https://www.mathworks.com/help/releases/R2021a/matlab/creating_plots/control-axes-interactions.html

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by