dc.graph
Version:
Graph visualizations integrated with crossfilter and dc.js
41 lines (32 loc) • 1.13 kB
HTML
<html>
<head>
<title>Flexbox layout</title>
<meta charset="UTF-8">
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/dc.graph.css"/>
<link rel="stylesheet" type="text/css" href="css/dc.css"/>
<script type="text/javascript" src="js/d3.js"></script>
<script type="text/javascript" src="js/crossfilter.js"></script>
<script type="text/javascript" src="js/dc.js"></script>
<script type="text/javascript" src="js/lodash.js"></script>
<script type="text/javascript" src="js/css-layout.js"></script>
<script type="text/javascript" src="js/yoga-layout.js"></script>
<script type="text/javascript" src="js/dc.graph.js"></script>
<script type="text/javascript" src="js/chart.registry.js"></script>
<script type="text/javascript" src="js/querystring.js"></script>
<style>
#graph {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
</style>
</head>
<body>
<div id="graph" class="chart"></div>
<script type="text/javascript" src="js/flexbox.js"></script>
</body>
</html>