Below is the link to the source code (remember to put in in the web folder of a web server such as xamp so that the html page will be able to download the json in the same folder):
https://dl.dropboxusercontent.com/u/113201788/d3/hive-plot.zip
Below is the html which includes the javascript that download a json data and then display as a HivePlot chart:
<html>
<head>
<link href="lib/hive-plot.css" rel="stylesheet"></link>
<script src="lib/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src="lib/d3.min.js" type="text/javascript"></script>
<script src="lib/hive-plot.js" type="text/javascript"></script>
<script>
$(function(){
plotHive();
});
function plotHive()
{
var url = "flare-imports.json";
// Load the data and display the plot!
d3.json(url, function(nodes) {
var plot = new HivePlot("chtHivePlot", "infoHivePlot", nodes);
});
}
</script>
<style>
body{
padding-top: 10px;
}
</style>
</head>
<body>
<div id="chtHivePlot" class="hiveplot" ></div>
</body>
</html>
No comments:
Post a Comment