- First, plot your data within the App Designer, something like below:
How to save the values of data tips of a plot
27 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
What function to use to save the data tip values of a plot to some variables in my app designer
0 commentaires
Réponses (1)
Ayush Singh
le 12 Juin 2024
Hi Neelakandan,
You can achieve saving the data tip values of a plot to some variables in the App Designer by creating data tips programmatically using the 'datatip' function on a plotted object and then accessing the data tip's properties.
For more information on 'datatip' function you can refer following:
Below are the steps, you can follow:
% Assuming ax is the handle to your UIAxes
plot(app.UIAxes, xData, yData);
2. After plotting, you can create a data tip on a specific data point by specifying the target plot and the data point index or coordinates.
% Create a data tip on the first data point of the plotted line
% Assume the plotted line object is stored in 'plotted'
plotted = plot(app.UIAxes, xData, yData);
% Create a data tip at the first data point
dt = datatip(plottedLine, 'DataIndex', 1);
3. Once you have created a data tip, you can extract its values or other required properties as per your use case and then store these values in your app's properties or use them directly for further calculations or display within the app.
0 commentaires
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer 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!