Skip to content

Instantly share code, notes, and snippets.

@hungvietdo
Last active February 5, 2016 02:09
Show Gist options
  • Select an option

  • Save hungvietdo/7489f614d7397048154b to your computer and use it in GitHub Desktop.

Select an option

Save hungvietdo/7489f614d7397048154b to your computer and use it in GitHub Desktop.
Week 4- D3 Tutorials

Scott Murray Tutorial

Jerome Cukier's Tutorial

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
svg { width:100%; height: 100% }
</style>
</head>
<body>
<script>
var dataset = [
[ 5, 20 ],
[ 480, 90 ],
[ 250, 50 ],
[ 100, 33 ],
[ 330, 95 ],
[ 410, 12 ],
[ 475, 44 ],
[ 25, 67 ],
[ 85, 21 ],
[ 220, 88 ]
];
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment