28 lines
710 B
HTML
Executable File
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>
|