crubier / react-graph-vis

A react component to render nice graphs using vis.js
http://crubier.github.io/react-graph-vis/
MIT License
946 stars 170 forks source link

Add ability for user supplied/custom datasets #112

Open notourist opened 3 years ago

notourist commented 3 years ago

This adds the possibility to use user supplied/custom DataSets instead of only arrays for the edges and nodes.

Example:

<Graph graph={{ edges: new DataSet(), nodes: new CustomDataSet() }}
              options=.../>

or

<Graph graph={{ edges: new DataSet(), nodes: [] }}
              options=.../>