clusterviz/web/data/data.js
2018-06-19 19:02:38 +02:00

20 lines
228 B
JavaScript

var graphData = {
"nodes": [
{
"id": "Foo",
"group": 1
},
{
"id": "Bar",
"group": 1
}
],
"links": [
{
"source": "Foo",
"target": "Bar",
"value": 1
}
]
};