zoom-in into figure, doesn't change Y axes
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
When performing zoom in on some positive values in the figure, where I have some negative values, after the zoom-in, I still have negative values on Y-axes. Please suggest what to do.
Matlab version: 8.6.0.267246 (R2015b) (.fig file is also attached)
Original image:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/157392/image.png)
Zoomed-in image:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/157393/image.png)
댓글 수: 1
Kirby Fears
2016년 10월 24일
편집: Kirby Fears
2016년 10월 25일
I zoomed in using the "+" magnifying glass and both axes behaved as expected in 2015a. The Pareto frontier was between 3.5 and 3.6 on the y axis.
채택된 답변
Marc Jakobi
2016년 10월 24일
Try setting the YTickLabelMode or the YTickMode to 'auto' or 'manual'.
e. g.
ax = gca;
ax.YTickLabelMode = 'auto';
댓글 수: 2
Walter Roberson
2016년 10월 24일
Right, the problem is that YTickLabelMode is set to 'manual' in the axes.
Walter Roberson
2016년 10월 24일
The behaviour should not be based on settings.
However, if you are using R2014a or earlier, then the version of the figure you got when you opened the .fig would be different than for R2014b or later. (Though one of the axes properties that show up here did not officially exist in R2014b itself, so I am not sure how that would be handled.)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!