Get started with d3-sankey CDN
BSD-3-Clause licensed
D3.jss D3-Sankey: Create Sankey diagrams representing quantified node flows.
Tags:- d3
- sankey
Stable version
Copied!
How to start using d3-sankey CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with d3-sankey CDN - cdnhub.io</title>
<style>
.link line {
fill: none;
stroke-width: 1.5px;
}
</style>
</head>
<body>
<script src="https://cdn.cdnhub.io/d3-sankey/0.12.3/d3-sankey.min.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<div id="sankey" style="width: 100%; height: 400px;"></div>
</body>
</html>
Copied!
Copied!