-1

i need a javascript plugin can design an dynamic IVR diagram and in output can get object for pass to server side.

i found mxgraph but not for IVR.

3 Answers3

1

I don't see why mxGraph would not work for this kind of task. In fact any reasonable graph drawing library should be able to able to do that.

I know for sure that you can easily implement great looking IVR diagrams (which are mostly just simple trees with a possibly dynamic automatic layout and a custom visualization for the nodes) with yFiles for HTML. That library has been created specifically to be highly extensible and as such allows for easily adding your own specific visualization for nodes and edges. Also trees and "near-tree" can easily be laid out automatically and you can create a dynamic interactive visualization of such a tree like in this decision tree demo.

Disclaimer: I work for the company that creates the latter of the above mentioned libraries, but I do not represent my employer on SO.

Sebastian
  • 7,729
  • 2
  • 37
  • 69
1

Here is a sample IVR app: https://gojs.net/latest/samples/IVRtree.html

Call diagram.model.toJson() to save it as JSON-formatted text.

Walter Northwoods
  • 4,061
  • 2
  • 10
  • 16
0

There are many libraries available for IVR diagrams. You can use d3.js, Gojs and JointJs.