zoomOrientation(axh​,state)

버전 1.1.0.0 (24.9 KB) 작성자: Sebastian Roehn
Scroll a zoomed axes in x/y direction related to full view
다운로드 수: 397
업데이트 날짜: 2016/3/15

라이선스 보기

The function zoomOrientation reduces width and height of an axes and adds two new axes, xOrientation and yOrientation plus xSlider and ySlider. You can either use the mouse wheel to zoom in/out or the mouse buttons left-click for zoom in and right-click for zoom out or the keys arrow up/down. Use the sliders to move the zoom area in x/y direction related to the plot data full view. The function uses only those plot data whose visibility is set to on. If no line handle
is visible, it makes the last added plot data visible.
Supports the following Line Plots: plot, semilogx, semilogy, loglog

Function Inputs:
axh = axes handle
state = on/off/update

Examples how to use zoomOrientation:
>> figure(1)
>> plot(1:100,randn(1,100))
>> zoomOrientation(gca,'on')

If zoomOrientation is already on and the plot data of the main axes has changed, update zoomOrientation with
>> zoomOrientation(gca,'update')

Close function and restore original axes settings
>> zoomOrientation(gca,'off')

Known issues:
If axes parent is a figure or uipanel, zooming on xOrientation and yOrientation
axes is still possible, although their properties HitTest and PickableParts are
set to off/none. Works fine with a uitab parent object!

Changelog:
see bottom of the page

Inspired by Yair Altman's scrollplot function.

인용 양식

Sebastian Roehn (2024). zoomOrientation(axh,state) (https://www.mathworks.com/matlabcentral/fileexchange/55969-zoomorientation-axh-state), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2014b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Visual Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Changelog v1.1:
- disabled initial zoom factor
- bugfix if function was called with state off or update but the function was not started before
- use plot data only whose visibility is set to on

1.0.0.0

add screenshot
Update description