How does one disable the menu that appears when one hovers on a plot?

How do we remove this thing?
I want nothing to appear / disappear when I am hovering on my plot if possible.

Answers (1)

You can set the Toolbar property on the axes when you create it.
ax = axes;
ax.Toolbar = [];
If you want that to be the default, you can add something like this to your startup.m.
set(groot,'DefaultAxesToolbarVisible',false);

2 Comments

does not work. Executed the command, figures still appear after I hover over them.

Sign in to comment.

Categories

Find more on Graphics Object Properties in Help Center and File Exchange

Products

Release

R2022b

Tags

Asked:

on 1 Nov 2022

Commented:

on 21 Mar 2023

Community Treasure Hunt

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

Start Hunting!