Stop automatically showing "data tips"

3 visualizaciones (últimos 30 días)
Nils Tilton
Nils Tilton el 13 de Abr. de 2021
Comentada: Nils Tilton el 14 de Abr. de 2021
Ever since I updated to Matlab 2020, there is an annoying feature such that if I happen to click the cursur in a figure, it will add a little "pin" showing the coordinates of the closest data point. Can I turn this new feature off? It's causing me lots of problems.

Respuesta aceptada

Jan
Jan el 14 de Abr. de 2021
Include this in the startup.m function:
if ~verLessThan('MATLAB','9.7')
set(groot, 'defaultAxesCreateFcn', @(ax,~) disableDefaultInteractivity(ax))
end
  5 comentarios
Adam Danz
Adam Danz el 14 de Abr. de 2021
Don't forget to accept Jan's answer (blue accept answer button).
Glad you got it worked out!
Nils Tilton
Nils Tilton el 14 de Abr. de 2021
Thanks!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by