Knowledge Base Article

Disable Mouse Scroll Zoom On Scatter Map

Purpose/Benefits:
When mouse scrolling on a Sisense dashboard that has many widgets - a Scatter Map can inadvertently be affected. This script will help keep the map in place.
Widget Code:
widget.on("beforeviewloaded", function (widget, args){

var map = args.options.map;
 
 map.scrollWheelZoom.disable();
 
});
Updated 03-02-2023
No CommentsBe the first to comment