How to disable dynamic menu items from axes
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Kevin Johnson
 el 19 de Mzo. de 2021
  
    
    
    
    
    Comentada: Kevin Johnson
 el 22 de Mzo. de 2021
            This question is difficult to look up the answer to because I don't know the name of this visual feature of an axes. It pops up dynamically as the cursor passes over it. Sometimes it interferes with nearby uicontrols etc., and I'd like to be able to disable it sometimes.

0 comentarios
Respuesta aceptada
  Srivardhan Gadila
    
 el 22 de Mzo. de 2021
        Refer to the documentation of Control Chart Interactivity and set the Visible property of the AxesToolbar object to 'off'
ax = gca;
ax.Toolbar.Visible = 'off';
Más respuestas (0)
Ver también
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!