Network-Customelement/usage_example.html
2024-08-09 21:56:32 +02:00

28 lines
710 B
HTML
Executable File

<!doctype html>
<html>
<head>
<title>My Custom Element</title>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v3.js"></script>
<script src="jsnetworkx.js"></script>
<script src="widget.js"></script>
</head>
<body>
<net-graph style="border-style: dotted; width:800px; height:600px;">
{
"nodes": [
[ 1, { "radius": 5, "color": "yellow"} ],
[ 2, { "radius": 15, "color": "green"} ],
[ 3, { "radius": 25, "color": "red"} ]
],
"edges": [
[1, 2, {"color": "red"}]
]
}
</net-graph>
</body>
</html>