Getting a callback to execute DURING a panning operation

7 ビュー (過去 30 日間)
Luke Plausin
Luke Plausin 2015 年 12 月 9 日
編集済み: Adam 2015 年 12 月 9 日
Hi everyone,
I would like to get a callback function to execute while I am dragging a plot with the pan tool. Matlab provides documented callbacks using the pan(axis) handle. However these can only execute before and after the pan operation, and not during. This means that other objects which I've drawn over the canvas cannot scroll with the plot.
set(pan(hfig),'ActionPreCallback', @(h, ev) preZoomFcn(h, ev));
set(pan(hfig),'ActionPostCallback', @(h, ev) postZoomFcn(h, ev));
Are there any ways I can get my callback to execute as the plot is being dragged?
Thanks Luke

回答 (1 件)

Adam
Adam 2015 年 12 月 9 日
編集済み: Adam 2015 年 12 月 9 日
This recent post on Yair Altman's blog may help you:
In general it seems callbacks are disabled during panning operations.

カテゴリ

Help Center および File ExchangeVisual Exploration についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by