when zooming the plotted dada exceeds axes limits

1 view (last 30 days)
Silvia
Silvia on 22 Feb 2014
Answered: Divyam on 17 Sep 2024
Hello,
I have a doubt. When zooming the data plotted exceed the axes limits and it appear over the GUI. I have used in the plot the option 'Clipping on' and I still have the problem.
Does anyone how to solve the problem?? Thank you very much.
Silvia

Answers (1)

Divyam
Divyam on 17 Sep 2024
Hi @Silvia,
  • If you are setting the "xlim" and "ylim" properties and want the zoom to be reset to these values, you can add the following code to the end of your plotting code:
zoom reset;
  • This issue can also be avoided by fitting the axes box tightly around the data by setting the axis limits equal to the range of the data using the below code:
xlim([minX, maxX]);
ylim([minY, maxY]);
axis tight;
If the issue still persists, consider upgrading to a newer version of MATLAB using this link: https://www.mathworks.com/downloads/
For more information regarding the "zoom" function and "axis" function, refer to the following documentation:

Categories

Find more on Data Exploration in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!