skip legend entries in property editor?

조회 수: 1 (최근 30일)
Martin Muehlegger
Martin Muehlegger 2020년 3월 4일
댓글: Martin Muehlegger 2020년 3월 5일
I have a .fig file where i'd like to delete the first 8 legend entries without effecting the other ones. Figure is attached. tried it with property editor but it doesn't work. I'm running 2017b.

답변 (1개)

Bhaskar R
Bhaskar R 2020년 3월 5일
ax = gca;
ax_data = ax.Children;
legend(ax_data(1:5), fliplr(ax.Legend.String(9:end)))
  댓글 수: 1
Martin Muehlegger
Martin Muehlegger 2020년 3월 5일
Ouh always forget fliplr.... But how to do this in the figure property editor?

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

카테고리

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