a simple line plot in an uiaxes in AppDesigner leads to error messages

7 vues (au cours des 30 derniers jours)
Mario Schwarz
Mario Schwarz le 18 Fév 2020
I am working in AppDesigner and I create an uiaxes where i simply plot some lines. When the mouse is near the plotted line i get a bunch of errormessages in the command window:
Warning: Error occurred while executing the listener callback for event MouseMove defined for class
matlab.graphics.interaction.graphicscontrol.InteractionObjects.DataTipInteraction:
Error using hgconvertunits
The reference object is invalid.
Error in getpixelposition
Error in getpixelposition
Error in getpixelposition
Error in brushing.select.translateToContainer
Error in matlab.graphics.interaction.uiaxes.Datatips
Error in matlab.graphics.interaction.actions.Linger/motionCallback
Error in matlab.graphics.interaction.actions.Linger
Error in
matlab.graphics.interaction.graphicscontrol.InteractionObjects.DataTipInteraction/actionevent
Error in matlab.graphics.interaction.graphicscontrol.InteractionObjects.InteractionBase
Error in matlab.graphics.interaction.graphicscontrol.GenericControl/process
Error in matlab.graphics.interaction.graphicscontrol.layoutable.LayoutableControl/process
Error in matlab.graphics.interaction.graphicscontrol.AxesControl/process

Réponses (2)

Jalaj Gambhir
Jalaj Gambhir le 28 Fév 2020
Modifié(e) : Jalaj Gambhir le 28 Fév 2020
Hi,
This issue occurs when we try to plot mixed datatypes in UIAxes in R2019a. This has been fixed in R2019b.
Meanwhile for R2019a, you can try a workaround for disabling the errors/warnings.
plot(....) % Your plot command
ax = gca;
disableDefaultInteractivity(ax)

Brandon Eidson
Brandon Eidson le 2 Avr 2020
Modifié(e) : Brandon Eidson le 2 Avr 2020
I had a similar issue. I was working with uint's. I found if I plotted my data as double, I no longer received the constant warning.
e.g.
plot(app.UIAxes, xData, double(yData))

Catégories

En savoir plus sur App Building dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by