Only one y-axis of two updates when graph zoomed in on
1 次查看(过去 30 天)
显示 更早的评论
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
采纳的回答
Narvik
2023-9-5
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!
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!