Put Annotation Behind Legend ?
조회 수: 11 (최근 30일)
이전 댓글 표시
When adding an annotation (line for example) it is always placed in front of the Legend. This occurs if creating the annotation before creating the Legend, or creating the annotation after creating the Legend. Is there a way to put the annotation behind the Legend so that the lines of the annotation do not overap the Legend ? Thanks very much.
댓글 수: 1
Adam Danz
2019년 8월 13일
편집: Adam Danz
2019년 8월 13일
Interesting finding. Changing the uistack() doesn't help either.
Here's a reproducible demo.
figure
plot(1:10)
x = [0.2 0.5];
y = [0.9 0.5];
ah = annotation('textarrow',x,y)
lh = legend('location','northwest')%,'color', 'w')
[update]
Note that the annotation object cannot be placed under line objects either.
[update 2]
"All of these limitations originate from the underlying implementation of annotation objects in Matlab. This is based on a transparent hidden axes that spans the entire figure’s content area, on which the annotations are being drawn (also called the scribe layer)."
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!