specifies the speed of scrolling the gantt by the mouse wheel
// scroll at double-speed
gantt.config.wheel_scroll_sensitivity = 2;
// scroll at half-speed
gantt.config.wheel_scroll_sensitivity = 0.5;
// or scroll at different speeds on different axes
gantt.config.wheel_scroll_sensitivity = {
x: 1,
y: 0.5
};
The object configuration has these properties:
added in v7.0.11
Back to top