dc.graph
Version:
Graph visualizations integrated with crossfilter and dc.js
41 lines (32 loc) • 1.12 kB
HTML
<html>
<head>
<title>Shapes and Text</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/cola.js"></script>
<script type="text/javascript" src="js/dagre.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/shapes-and-text.js"></script>
</body>
</html>