1

I've implemented a graph using mxGraph libraries. Is there any way to export this graph to visio?

Behnaz
  • 63
  • 1
  • 11

2 Answers2

2

mxGraph doesn't support that functionality. draw.io does have export to .vsdx, however.

Frodo Baggins
  • 8,290
  • 6
  • 45
  • 55
1

You must do it by youself.Here is the step:

  1. Encode the graph to xml.

  2. Trans the xml to your own object.

  3. Draw it.

Administrator
  • 116
  • 1
  • 10