How to change the line thickness inside the legend box ?
    47 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    farzad
      
 el 13 de Abr. de 2020
  
    
    
    
    
    Comentada: Adam Danz
    
      
 el 23 de En. de 2023
            Hi All
in the UIAxes, how do I change the line thickness inside the legend box that indicate each of the plots in the graphic interface? since if too thin, it is hard to see and the legend reading will get difficult
0 comentarios
Respuesta aceptada
  Adam Danz
    
      
 el 13 de Abr. de 2020
        
      Editada: Adam Danz
    
      
 el 13 de Abr. de 2020
  
      The line properties of the legend components cannot be changes independently from the line objects they represent in the plot.  So, the easiest solution is to change the line properties from within the plot. 
h = plot(x,y, 'LineWidth', 1.5); 
% or
h.LineWidth = 1.5; 
If you want the change the legend representation without changing the line property, you can copy the line and replace its XData and YData with NaN values so it doesn't appear in the plot.  Then you can change it's LineWidth property and create the legend using the new line's handle.
ax = axes(); 
hold on
h = plot(x,y, 'b-o');
hLeg = copyobj(h, ax); 
set(hLeg, 'XData', NaN, 'YData', NaN, 'LineWidth', 1.5)
legend(hLeg)
12 comentarios
  Farzad Torabi
 el 22 de En. de 2023
				Please use a new post to discuss this post to avoid unwanted comments. Many thanks!
  Adam Danz
    
      
 el 23 de En. de 2023
				@Farzad Torabi, you can unfollow this thread to stop getting notifications.  Click the "unfollow" button under the title of your question. 

Más respuestas (0)
Ver también
Categorías
				Más información sobre Legend 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!