0
夥計們,如何使用D3
呈現來自JSON陣列elemnts表我想渲染使用D3.js
的JSON以下JSON HTML表格我使用這個proceess在這裏,http://jsfiddle.net/d9wgnbdd/2例如,'辦公室類型'具有更多'代碼','代碼'具有更多'羣集',也就是具有更多分支的羣組。
我想顯示如下表格,需要您在這個@mccannaff的幫助。期待
Code Office-code Corp-Code Region-Code Cluster-Code
CO CRP CBE BN117 C1038
CO CRP CBE BN117 C1039
CO CRP CBE BN117 C1049
CO CRP CBE BN117 C1147
這是我的HTML我想顯示錶,
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>D3: Subselection Example</title>
<script type="text/javascript" src="d3.js"></script>
<style type="text/css">
body {
font: 13px sans-serif;
}
td, th {
padding: 1px 25px 0px 1px;
border: 1px black solid;
width:80px;
}
ul {
list-style: none;
font-weight: bold;
}
li {
margin: 0.2em 0.0em;
padding: 0.5em 1.0em;
font-weight: normal;
}
</style>
</head>
<body>
<script type="text/javascript">
d3.json("Udashboard.json", function (error,data) {
function tabulate(data, columns) {
var table = d3.select('body').append('table')
var thead = table.append('thead')
var tbody = table.append('tbody');
// append the header row
thead.append('tr')
.selectAll('th')
.data(columns).enter()
.append('th')
.text(function (column) { return column.id; });
// create a row for each object in the data
var rows = tbody.selectAll('tr')
.data(data.objects)
.enter()
.append('tr');
// create a cell in each row for each column
var cells = rows.selectAll('td')
.data(function (row) {
return columns.map(function (column) {
return { column: column.id, value: eval('row.'+column.key) };
});
})
.enter()
.append('td')
.text(function (d) { return d.value; });
return table;
}
var columnFields = [ { id: "ID", key: "id" },
{ id: "Code", key: "officetype[0].code" },
{ id: "C_Code", key: "officetype[0].corp[0].code" },
{ id: "Name", key: "name" } ];
console.log (data);
// render the table(s)
tabulate(data, columnFields); // 2 column table
});
</script>
</body>
</html>
鈣誰能幫助我在流來處理這個問題?
任何人想法做這個嵌套數組元素的分組? – DevGo 2014-10-02 14:31:19
對不起@ Mary.Hansen,我看不到一種基於數組元素的分組方式,但也是以如此複雜的方式嵌套。我建議你找到一種方法將這個JSON對象展平或者將關鍵元素提取到更類似於表的東西上,然後再次提出問題! – mccannf 2014-10-13 11:51:41
我們可以渲染一個具有相同方式元素的d3表嗎?不需要分組..我更新了我的問題 - 請看我的問題,現在我簡化它。希望你能幫助。 – DevGo 2014-10-13 13:26:57