Hello together,
I'm embedding
draw.io to my own application and i need the diagramm to be saved as uncompressed XML.
I'm developing my application according to this example:
https://github.com/jgraph/drawio-html5 (local Storage) but i need the Diagramm to be saved on my Server and not embedded as PNG.
All in all i got everything together, but i'm only able to get the Datas as compressed XML. I'm using this:
source.drawIoWindow.postMessage(JSON.stringify({action: 'export', format: 'xml', spinKey: 'saving'}), '*');
Is it supported to have uncompressed XML. And if yes, how can I adjust the line above to get uncompressed XML.
Thanks for every help :)