<?php
include_once "../d3.classes.inc.php";
include_once "../wrappers/reingoldtilfordtree.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>
<?php echo d3::script();?>
</head>
<body>
<script>
<?php
$chart = new d3ReingoldTilfordTree(array("width"=>960));
echo $chart->render();
?>
</script>
</body>
</html>
|