aw-webui icon indicating copy to clipboard operation
aw-webui copied to clipboard

enable horizontal scroll on timeline

Open wis opened this issue 2 years ago • 1 comments

right now when you scroll horizontally, to the left or right, it zooms on the timeline and does not scroll the timeline. it should scroll the timeline when you scroll horizontally.

option used, horizontalScroll?: boolean: https://github.com/visjs/vis-timeline/blob/698f7ebfbe0ed93c6b4b1928ea9a39c5182d275f/types/index.d.ts#L268

the option's usage in the vis-timeline repo: https://github.com/search?q=repo%3Avisjs%2Fvis-timeline%20horizontalScroll&type=code

edit: after searching existing PRs after submitting this PR, it appears there's an existing PR for this, #237, I am not sure why it has not been merged yet, I think it is the hesitancy to change the UI interaction for the zoom behavior, I don't understand why is holding ctrl discussed in that PR? I don't think it should require holding ctrl, on a vertical scroll event it should zoom in or out depending on the sign of the value for event.deltaY, whether it is positive or negative, and on a horizontal scroll event it should scroll left or right, depending on the sign of the value for event.deltaX, whether it is positive or negative. it should not do the same thing, zoom in or out, on BOTH vertical and horizontal scrolling, that's redundant.

(it appears the library supports enabling this behavior with options): https://github.com/visjs/vis-timeline/blob/698f7ebfbe0ed93c6b4b1928ea9a39c5182d275f/lib/timeline/Core.js#L258

FYI: horizontal scroll is a native event on the OS level, there are mouses/?mice? that come with a horizontal scroll wheel, laptops also send a horizontal scroll event when swiping two fingers horizontally on the touchpad. also some applications, for example: browsers, treat the vertical scroll event as a horizontal scroll event when shift is held down while scrolling vertically.

wis avatar Jan 14 '24 15:01 wis

@wis this shouldn't break pinch to zoom either with touchscreen or on touchpad, right?

petrroll avatar Aug 12 '25 10:08 petrroll