我正在尝试使用sigma.js来实现图表,但我不知道该怎么做。我在哪里放置Data
段?这是一个javascript代码吗?
HTML 的
<html>
<head>
<style type="text/css">
#container {
max-width: 400px;
height: 400px;
margin: auto;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="sigma.min.js"></script>
<script src="sigma.parsers.json.min.js"></script>
<script>
sigma.parsers.json('data.json', {
container: 'container',
settings: {
defaultNodeColor: '#ec5148'
}
});
</script>
</body>
</html>
数据:的
{
"nodes": [
{
"id": "n0",
"label": "A node",
"x": 0,
"y": 0,
"size": 3
},
{
"id": "n1",
"label": "Another node",
"x": 3,
"y": 1,
"size": 2
},
{
"id": "n2",
"label": "And a last one",
"x": 1,
"y": 3,
"size": 1
}
],
"edges": [
{
"id": "e0",
"source": "n0",
"target": "n1"
},
{
"id": "e1",
"source": "n1",
"target": "n2"
},
{
"id": "e2",
"source": "n2",
"target": "n0"
}
]
}
答案 0 :(得分:2)
这是一个网址。在这种情况下,data.json
是与HTML文件位于同一目录中的文件。如果您希望在代码中使用JSON而不是在单独的文件中使用JSON,则可以执行以下操作:
new sigma({
container: 'container',
graph: graph
});
其中graph
是JavaScript对象。
编辑:动态添加图表:
var s = new sigma('container');
s.graph.read(graph);
(您可能还需要s.graph.clear()
和s.refresh()
)