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

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

Respuestas (2)

Jalaj Gambhir
Jalaj Gambhir el 28 de Feb. de 2020
Editada: Jalaj Gambhir el 28 de Feb. de 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 el 2 de Abr. de 2020
Editada: Brandon Eidson el 2 de Abr. de 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))

Categorías

Más información sobre App Building en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by