labels are hidden behind the plot
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a problem in plotting my data, the lables are hidden behind the plots, how can I bring the lables to the frond of the plott please?
The code I am using in labelling the month is:
for uu = 2:length(month)
text(month_x_axis(uu),4,month(uu,:),'FontWeight','bold')
end
댓글 수: 3
Walter Roberson
2021년 3월 14일
편집: Walter Roberson
2021년 3월 14일
what is class(month)?
Why are you using length(month) as the bound instead of size(month, 1)
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!