19 lines
604 B
HTML
19 lines
604 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Connect Arrows</title>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"
|
||
|
integrity="sha512-M7nHCiNUOwFt6Us3r8alutZLm9qMt4s9951uo8jqO4UwJ1hziseL6O3ndFyigx6+LREfZqnhHxYjKRJ8ZQ69DQ=="
|
||
|
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||
|
<script defer src="./script.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Minimal example of arrow connection in d3</h1>
|
||
|
<svg id="graph" height="900", width="900"></svg>
|
||
|
</body>
|
||
|
|
||
|
</html>
|