Legend: is it possible to remove the border while leaving the background color?

조회 수: 60 (최근 30일)
Dear MatLab users,
I would like to generalize my plot legends visualization, but the legend border and background seem to interact together (see example below). In this case, the boxoff command prevails over the background color, as it disables both. Is it possible to remove ONLY the legend border while leaving the background color?
A = rand(5,1) ;
on_off = 'off' ;
legendcolor = 'r' ;
plot(A) ;
leg = legend('My text') ;
set( leg , 'fontsize' , 20 , 'location' , 'east', 'color' , legendcolor , 'box' , on_off )
grid on

채택된 답변

Fangjun Jiang
Fangjun Jiang 2020년 12월 9일
set( leg , 'fontsize' , 20 , 'location' , 'east', 'color' , 'g' , 'box' , 'on','edgecolor','g' )
  댓글 수: 3
Fangjun Jiang
Fangjun Jiang 2020년 12월 9일
According to doc, "box" meant to include background and outline.
Legend box display, specified as one of these values:
  • 'boxon' — Display the legend background and outline.
  • 'boxoff' — Do not display the legend background and outline.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by