viewToDocument

Transforms a point from View coordinates to Page document coordinates. View origin is the diagram container.

Parameters

point kendo.dataviz.diagram.Point

The point in Page document coordinates.

Returns

kendo.dataviz.diagram.Point the transformed point

Example - convert a Point from View to Document coordinates

<button id="convertBtn">Convert point coordinates</button>
<div id="diagram"></div>
<script>
  $("#convertBtn").on("click", function(){
    var diagram = $("#diagram").getKendoDiagram();
    var point = new kendo.dataviz.diagram.Point(200, 100);
    var documentCoordinates = diagram.viewToDocument(point);
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log("(200, 100) = > " + documentCoordinates);
  });
  $("#diagram").kendoDiagram({
    zoom: 1.5,
    shapes: [{
      id: "1",
      x: 100,
      y: 20
    }, {
      id: "2",
      x: 350,
      y: 20
    }, {
      id: "3",
      x: 250,
      y: 200
    }],
    connections: [{
      from: "1",
      to: "2"
    },{
      from: "2",
      to: "3"
    }],
    connectionDefaults: {
      endCap: "ArrowEnd"
    }
  });
</script>
In this article