Hi Walter,
We are downloading the go js diagram as an image by using some code like below.
let d = myDiagram.documentBounds;
myDiagram.makeImageData({ background: “white”, returnType: “blob”, callback: myCallback, size: new go.Size(d.width, d.height), maxSize: new go.Size(Infinity, Infinity) });
The whole diagram is getting downloaded properly, But text in few nodes not coming in the downloaded image. But when we see in the go js diagram, the text is available.
Can you please help with any possible reason why the text is missing in downloaded image?