Only one y-axis of two updates when graph zoomed in on

5 visualizaciones (últimos 30 días)
Joseph Cunningham
Joseph Cunningham el 7 de Oct. de 2022
Respondida: Narvik el 5 de Sept. de 2023
Hello,
I am generating graphs from multiple variables relative to the same x-axis. The output plots look good (see LHS example), but when I attempt to zoom in on a portsion of the graph, the LHS y-axis and x-axis update to the modified values within visual range, while the RHS y-axis values remain static as before the zoom, making it difficult to determine values from the zoomed-in graph. How can I remedy this issue? See attached graphics:
Thanks,
Joseph

Respuestas (1)

Narvik
Narvik el 5 de Sept. de 2023
Hi,
I understand that you want x and y axes of both of your subplots to be updated when zoomed in.
This can be done either by using linkaxes or linkprop functions.
Please find the code for linking x and y axes of two subplots below:
% Here, ax1 and ax2 are
% axes of the two subplots.
% Using 'linkaxes' function.
linkaxes([ax1, ax2], 'xy');
% Using 'linkprop' function.
linkprop([ax1, ax2], {'XLim', 'YLim'});
For more information on the “linkaxes” and “linkprop” functions, you can refer to the following documentation:
Hope this helps!

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by