Hi,
Im using ajax to load my diagram with nodes (saved in a database).
Now the idea is to create a preview of what these saved diagram look like.
Is there a way to not load the whole diagram but still to create an image of the model that is saved?
I mean the easiest way would be to have something like:
myDiagram.model = go.Model.fromJson(data);
myDiagram.makeImage;
But this would populate my whole diagram already.