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
<html> | |
<head> | |
<title>Uncertainty: Improving the dot plot</title> | |
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> | |
<script type="text/javascript" src="d3.js"></script> | |
<script type="text/javascript" src="jquery-1.8.2.min.js"></script> | |
<style type="text/css"> | |
.axis path, | |
.axis line { |
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
<script type="text/javascript"> | |
//Width and height | |
var w = 800; | |
var h = 550; | |
var barPadding = 1; | |
var bottomMargin = 42; | |
var verticalDataPixels = h - bottomMargin; | |
var dataset = [ 5, 10, 13, 19, 21, 25, 22, 18, 15, 13, |
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
<html> | |
<head> | |
<title>D3 Demo: Making a bar chart with value labels!</title> | |
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> | |
<script type="text/javascript" src="d3.js"></script> | |
<style type="text/css"> | |
/* No style rules here yet */ | |
</style> | |
</head> | |
<body> |
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
<html> | |
<head> | |
<title>D3 Demo: Making a bar chart with value labels!</title> | |
<script type="text/javascript" src="d3.js"></script> | |
<style type="text/css"> | |
/* No style rules here yet */ | |
</style> | |
</head> | |
<body> | |
<script type="text/javascript"> |
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
<html> | |
<head> | |
<title>D3 Demo: Making a bar chart with value labels!</title> | |
<script type="text/javascript" src="d3.js"></script> | |
<style type="text/css"> | |
/* No style rules here yet */ | |
</style> | |
</head> | |
<body> | |
<script type="text/javascript"> |