Stop automatically showing "data tips"

5 views (last 30 days)
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.

Accepted Answer

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

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!