Built with blockbuilder.org
Last active
March 29, 2018 12:05
-
-
Save merelyanode/0b34d66236920d5011d354cf720bdc36 to your computer and use it in GitHub Desktop.
newKidBlock
This file contains 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
license: mit |
This file contains 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> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<style> | |
body {background-color:blue;margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
</style> | |
</head> | |
<body> | |
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> | |
<script type="text/javascript"> | |
google.charts.load("current", {packages:["timeline"]}); | |
google.charts.setOnLoadCallback(drawChart); | |
function drawChart() { | |
var container = document.getElementById('example3.1'); | |
var chart = new google.visualization.Timeline(container); | |
var dataTable = new google.visualization.DataTable(); | |
dataTable.addColumn({ type: 'string', id: 'Position' }); | |
dataTable.addColumn({ type: 'string', id: 'Name' }); | |
dataTable.addColumn({ type: 'date', id: 'Start' }); | |
dataTable.addColumn({ type: 'date', id: 'End' }); | |
dataTable.addRows([ | |
[ 'NHK', 'George Washington', new Date(1789, 3, 30), new Date(1797, 2, 4) ], | |
[ '番組', 'George Washington', new Date(1789, 3, 30), new Date(1797, 2, 4) ], | |
[ 'President', 'John Adams', new Date(1797, 2, 4), new Date(1801, 2, 4) ], | |
[ 'President', 'Thomas Jefferson', new Date(1801, 2, 4), new Date(1809, 2, 4) ], | |
[ 'Vice President', 'John Adams', new Date(1789, 3, 21), new Date(1797, 2, 4)], | |
[ 'Vice President', 'Thomas Jefferson', new Date(1797, 2, 4), new Date(1801, 2, 4)], | |
[ 'Vice President', 'Aaron Burr', new Date(1801, 2, 4), new Date(1805, 2, 4)], | |
[ 'Vice President', 'George Clinton', new Date(1805, 2, 4), new Date(1812, 3, 20)], | |
[ 'Secretary of State', 'John Jay', new Date(1789, 8, 25), new Date(1790, 2, 22)], | |
[ 'Secretary of State', 'Thomas Jefferson', new Date(1790, 2, 22), new Date(1793, 11, 31)], | |
[ 'Secretary of State', 'Edmund Randolph', new Date(1794, 0, 2), new Date(1795, 7, 20)], | |
[ 'Secretary of State', 'Timothy Pickering', new Date(1795, 7, 20), new Date(1800, 4, 12)], | |
[ 'Secretary of State', 'Charles Lee', new Date(1800, 4, 13), new Date(1800, 5, 5)], | |
[ 'Secretary of State', 'John Marshall', new Date(1800, 5, 13), new Date(1801, 2, 4)], | |
[ 'Secretary of State', 'Levi Lincoln', new Date(1801, 2, 5), new Date(1801, 4, 1)], | |
[ 'Secretary of State', 'James Madison', new Date(1801, 4, 2), new Date(1809, 2, 3)] | |
]); | |
var options = { | |
timeline: { groupByRowLabel: false } | |
}; | |
timeline: { | |
colorByRowLabel: true | |
} | |
chart.draw(dataTable); | |
} | |
</script> | |
<div id="example3.1" style="height: 200px;"></div> | |
</body> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment