wheel_scroll_sensitivity

specifies the speed of scrolling the gantt by the mouse wheel

number|object wheel_scroll_sensitivity;

Example

// 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
};


Default value:

undefined
Change log

added in v7.0.11

Back to top