mirror of
https://github.com/TBEDP/datavjs.git
synced 2025-12-08 19:45:52 +00:00
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>treemap</title>
|
|
<script type="text/javascript" src="../../deps/d3.js"></script>
|
|
<script type="text/javascript" src="../../deps/raphael.min.js"></script>
|
|
<script type="text/javascript" src="../../deps/underscore-1.4.2.js"></script>
|
|
<script type="text/javascript" src="../../deps/jquery-1.7.1.min.js"></script>
|
|
<script type="text/javascript" src="../../lib/datav.js"></script>
|
|
<script type="text/javascript" src="../../lib/charts/treemap.js"></script>
|
|
<style type="text/css">
|
|
#chart {
|
|
border-top: 1px dashed #F00;
|
|
border-bottom: 1px dashed #F00;
|
|
padding-left: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="hover">hover node info</div>
|
|
<div id="info">click leaf node info</div>
|
|
<div id="chart"></div>
|
|
|
|
<script type="text/javascript">
|
|
DataV.changeTheme("theme0");
|
|
var treemap = new Treemap("chart");
|
|
d3.json("category_ratio.json", function (source) {
|
|
treemap.setSource(source);
|
|
treemap.setOptions({
|
|
"leafNodeClick": function () {
|
|
$("#info").html(this.name + " is a leaf node.");
|
|
},
|
|
"hoverIn": function () {
|
|
$("#hover").html("hover " + this.name);
|
|
},
|
|
"hoverOut": function () {
|
|
$("#hover").html("leave " + this.name);
|
|
}
|
|
});
|
|
treemap.render();
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|