how to make the edge of the graph bold ?
    조회 수: 21 (최근 30일)
  
       이전 댓글 표시
    
how to make the edge of the graph bold as shown below:
채택된 답변
  Star Strider
      
      
 2020년 6월 21일
        Unfortunately, nothing is shown.  
Guessing what you may want, try this: 
x = 1:10;
y = rand(size(x));
figure
plot(x, y)
grid
title('Default Box Linewidth (0.5)')
figure
plot(x, y)
grid
set(gca, 'LineWidth', 1.5)
title('Redefined Box Linewidth (1.5)')
producing (only showing the second plot here): 

댓글 수: 14
  Star Strider
      
      
 2020년 6월 21일
				The person whose Answer you Accepted copied my Answer.  Ther is no need for me to re-post it.  
  ibrahim alzoubi
 2020년 6월 22일
				chill! I didn't see your comment I said. trust me I'll accept it if I saw it.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


