modelToDocument

Transforms a point from Model coordinates to Page document coordinates. Shortcut for viewToDocument(modelToView(point)).

Parameters

point Object

The point in Model coordinates.

Returns

Object the transformed point

Example - convert shape position to Page document coordinates

<button id="convertBtn">Convert first shape coordinates</button>
<div id="diagram"></div>
<script>
  $("#convertBtn").on("click", function(){
    var diagram = $("#diagram").getKendoDiagram();
    var documentCoordinates = diagram.modelToDocument(diagram.shapes[0].position());
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(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