フィルターのクリア

Stop automatically showing "data tips"

2 ビュー (過去 30 日間)
Nils Tilton
Nils Tilton 2021 年 4 月 13 日
コメント済み: Nils Tilton 2021 年 4 月 14 日
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.

採用された回答

Jan
Jan 2021 年 4 月 14 日
Include this in the startup.m function:
if ~verLessThan('MATLAB','9.7')
set(groot, 'defaultAxesCreateFcn', @(ax,~) disableDefaultInteractivity(ax))
end
  5 件のコメント
Adam Danz
Adam Danz 2021 年 4 月 14 日
Don't forget to accept Jan's answer (blue accept answer button).
Glad you got it worked out!
Nils Tilton
Nils Tilton 2021 年 4 月 14 日
Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by