<?php 
 
include_once "../d3.classes.inc.php";
 
include_once "../wrappers/clusterdendrogram.php";
 
?><!DOCTYPE html>
 
<html>
 
<head>
 
<meta charset="utf-8">
 
<style>
 
 
body {
 
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 
  margin: auto;
 
  position: relative;
 
  width: 960px;
 
}
 
 
.node circle {
 
  fill: #fff;
 
  stroke: steelblue;
 
  stroke-width: 1.5px;
 
}
 
 
.node {
 
  font: 10px sans-serif;
 
}
 
 
.link {
 
  fill: none;
 
  stroke: #ccc;
 
  stroke-width: 1.5px;
 
}
 
 
</style>
 
<script src="http://d3js.org/d3.v3.min.js"></script>
 
</head>
 
<body>
 
<script>
 
<?php
 
$chart = new d3ClusterDendrogram();
 
echo $chart->render();
 
?>
 
</script>
 
</body>
 
</html>
 
 |