d3js: Create an HTML table using d3.js and JSON
-
-
Save totucuong/da343b2d980db13fae45ddd1266906b7 to your computer and use it in GitHub Desktop.
d3js: Create an HTML table using d3.js and JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { "date" : "2013-01-01", "close" : 45 }, | |
| { "date" : "2013-02-01", "close" : 50 }, | |
| { "date" : "2013-03-01", "close" : 55 }, | |
| { "date" : "2013-04-01", "close" : 50 }, | |
| { "date" : "2013-05-01", "close" : 45 }, | |
| { "date" : "2013-06-01", "close" : 50 }, | |
| { "date" : "2013-07-01", "close" : 50 }, | |
| { "date" : "2013-08-01", "close" : 55 } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset='utf-8'> | |
| <html> | |
| <head> | |
| <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
| <link rel='stylesheet' href='style.css'> | |
| </head> | |
| <body> | |
| <script type='text/javascript' src='script.js'></script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| d3.json('data.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; }); | |
| // create a row for each object in the data | |
| var rows = tbody.selectAll('tr') | |
| .data(data) | |
| .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, value: row[column]}; | |
| }); | |
| }) | |
| .enter() | |
| .append('td') | |
| .text(function (d) { return d.value; }); | |
| return table; | |
| } | |
| // render the table(s) | |
| tabulate(data, ['date', 'close']); // 2 column table | |
| }); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| td, th { | |
| padding: 1px 4px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment