]> git.proxmox.com Git - proxmox-widget-toolkit.git/commit
panel/RRDCharts: enable scrolling for RRDCharts on touchscreens
authorDominik Csapak <d.csapak@proxmox.com>
Thu, 5 Aug 2021 10:31:35 +0000 (12:31 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 23 Aug 2021 16:17:02 +0000 (18:17 +0200)
commitc91a73150fdfb9ab7952ae3d1499f26b013f90c1
tree358625ea188ad7b72c65f1b3a17622a03ac48008
parent088a3ed9e9de7df7d3256a6a7b9cc5ff34714e3b
panel/RRDCharts: enable scrolling for RRDCharts on touchscreens

quote from extjs docs (AbstractChart.js):

 If you do have a chart inside a scrollable view, even if it has no
 interactions, you have to set its touchAction config to the following:

 touchAction: {
     panX: true,
     panY: true
 }

 Otherwise, if a touch action started on a chart,
 a swipe will not scroll the view.

Since we have RRDCharts always in a scrollable view, and it does not seem to
hurt non-touchscreens, enable it by default so that users on touchscreens
can scroll it.

Reported by users in the forum:
https://forum.proxmox.com/threads/minor-but-annoying-ipad-swipe-bug.93686

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
src/panel/RRDChart.js