This chart is a revised version of Mike Bostock's Bar Chart I, updated to use the latest version of D3.
Last active
August 19, 2020 02:17
-
-
Save davegotz/8c0baa7a34a137af33fd28498e269a75 to your computer and use it in GitHub Desktop.
Bar Chart I
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
| license: gpl-3.0 |
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"> | |
| <style> | |
| .chart div { | |
| font: 10px sans-serif; | |
| background-color: steelblue; | |
| text-align: right; | |
| padding: 3px; | |
| margin: 1px; | |
| color: white; | |
| } | |
| </style> | |
| <div class="chart"></div> | |
| <script src="https://d3js.org/d3.v5.min.js"></script> | |
| <script> | |
| var data = [4, 8, 15, 16, 23, 42]; | |
| var x = d3.scaleLinear() | |
| .domain([0, d3.max(data)]) | |
| .range([0, 420]); | |
| d3.select(".chart") | |
| .selectAll("div") | |
| .data(data) | |
| .enter().append("div") | |
| .style("width", function(d) { return x(d) + "px"; }) | |
| .text(function(d) { return d; }); | |
| </script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment