0

I would like to visualize a dynamic graph. Actually, I take a look on how some libraries treating that like d3.js, sigma.js and cytoscape.js. The problem is that these libraries are reading the graph data from a specific file, in my case these data will be generated using a program (dynamically).

I am wondering if I can replace the file data, by a string text containing all information ?

Khouloud
  • 81
  • 1
  • 1
  • 10

2 Answers2

0

I don't know about those 3, but I use Highcharts for stuff like this. I believe this showcases something like what you want.

Bluefire
  • 13,519
  • 24
  • 74
  • 118
0

I've been using cytoscape.js and all of my graph information is generated based on parsing user input, everything from click events to dropdown menu selection to text input.

I do not know that you can just replace an input file with a string and have it do the work for you, but if you know what to expect from the string input then you should be able to parse it to look like you want it to.

trangevi
  • 355
  • 1
  • 7
  • I think that the 'cy.add(element)' of cytoscape is usefull, so i can add data element dynamically which i didn't found with d3.js – Khouloud Aug 25 '15 at 17:27