When I do this in my javascript:
var diagram = $("#template-diagram").getKendoDiagram();
diagram.bringIntoView(diagram.shapes[0], { align: "center" });
This shows up in the browser's debugger (using Firefox):
Error: i is undefined
k<.bringIntoView@http://localhost:8000/lib/kendo-ui/js/kendo.all.min.js:104:8505
In Chrome it looks like this:
TypeError: Cannot read property 'clone' of undefined
at R.extend.bringIntoView (kendo.all.js:157101)
Which is likely why I can't get bringIntoView to work for my diagram. I should mention, I am using the diagram in a JqueryUI dialog window, but otherwise, its a fairly simple diagram.