0
scracthからノードとエッジを持つグラフを作成しようとしています。私は下のコードのようにノードとエッジを作成していますが、ページ上に何も表示されません。助けてください。ここに私のHTMLとコードがあります。私はcytoscape.js実装用の重み付きグラフを作成する方法Dijkstra
<html>
<head>
<title>Tutorial 1: Getting Started</title>
<script src="cytoscape.js"></script>
</head>
<style>
#cy {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
}
</style>
<body>
<div id="cy"></div>
<script>
var cy = cytoscape({
container: document.getElementById('cy'),
elements: [
{ data: { id: 'a' } },
{ data: { id: 'b' } },
{ data: { id: 'c' } },
{ data: { id: 'd' } },
{ data: { id: 'e' } },
{
data: {
id: 'ab',
source: 'a',
target: 'b'
}
data: {
id: 'da',
source: 'b',
target: 'd'
}
data: {
id: 'bd',
source: 'b',
target: 'd'
}
data: {
id: 'eb',
source: 'e',
target: 'b'
}
data: {
id: 'ba',
source: 'b',
target: 'a'
}
data: {
id: 'ed',
source: 'e',
target: 'd'
}
data: {
id: 'ce',
source: 'c',
target: 'e'
}
data: {
id: 'bc',
source: 'b',
target: 'c'
}
}]
});
</script>
は、あなたの体とhtmlタグは1のため、閉鎖されていないここに