We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello. I am trying to draw a graph on canvas by importing the created xml.
However, the MxCodec.decode function does not work. The graph is not rendered or drawn.
origin code
const xmlDoc = MxUtils.parseXml(data); const codec = new MxCodec(xmlDoc); codec.decode(xmlDoc.documentElement, this.graph.getModel());
but, Code I found on the internet
let elt = xmlDoc.documentElement.firstChild; let cells = []; while (elt != null) { cells.push(codec.decode(elt)); this.graph.refresh(); elt = elt.nextSibling; } this.graph.addCells(cells);
Both don't work.
Please tell me how to render the xml. thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hello.
I am trying to draw a graph on canvas by importing the created xml.
However, the MxCodec.decode function does not work.
The graph is not rendered or drawn.
origin code
but, Code I found on the internet
Both don't work.
Please tell me how to render the xml.
thank you
The text was updated successfully, but these errors were encountered: