xxxxxxxxxx
<meta charset="utf-8">
<html>
<head>
<style>
svg {
width: 960px;
height: 500px;
border: 1px solid gray;
}
</style>
</head>
<body>
<div id="display"></div>
<script src="https://d3js.org/d3.v3.js"></script>
<script src="table.js"></script>
<script>
/* put our d3 code here */
var display = d3.select("#display");
d3.json("data.json", function (err, pics) {
var data = pics.data.children;
console.log(data);
// table container
var tdiv = display.append("div").classed("table",true);
var table = d3.chart.table();
table.data(data);
table(tdiv);
});
</script>
</body>
</html>
Modified http://d3js.org/d3.v3.js to a secure url
https://d3js.org/d3.v3.js