Hi,
I have a digram with around 100 nodes and I have used circular layout.
But when we try to makeImage with scale:1, the png downloaded does not include all the nodes. I see only partial diagram in the downloaded image.
Here’s what I am using:
var goJsDiagram = this.mapPanel.goJsDiagram;
var imgData = goJsDiagram.makeImage({scale:1});
var download = document.createElement('a');
download.href = imgData.src;
download.download = 'map.png';
download.click();
Please let me know if I m missing anything.
Thanks in advance.