New to Kendo UI for jQueryStart a free 30-day trial

Pan the Diagram with the Mouse Wheel

Environment

ProductProgress® Kendo UI® Diagram for jQuery
Operating SystemWindows 10 64bit
Visual Studio VersionVisual Studio 2017
Preferred LanguageJavaScript

Description

How can I pan the Kendo UI Diagram when scrolling with the mouse?

Solution

To achieve this behavior:

  1. Handle the zoomStart event of the Kendo UI Diagram.
  2. Get the delta from the arguments, that is e.meta.delta.
  3. Pan the Diagram with the new coordinates by using the pan method.

<select id="panDirection">
  <option value="x">Pan Horizontally</option>
  <option value="y">Pan Vertically</option>
</select>

<div id="diagram"></div>

<script>  
var Point = kendo.dataviz.diagram.Point;

$("#diagram").kendoDiagram({
   shapes:[ { id:"1", x: 100, y: 100 },
     		   	{ id:"2", x: 300, y: 100 } ],
   connections:[ { from: "1", to: "2" }
   ],
    zoomStart: function(e){
      var zoomDirection = $("#panDirection").val();
      var diagram = e.sender,
          panPoint = diagram.pan();
      panPoint[zoomDirection] = panPoint[zoomDirection] + e.meta.delta;
      diagram.pan(panPoint);
      e.preventDefault();
  },
});
</script>

See Also