Last active
February 20, 2021 04:38
-
-
Save kuntau/1bbcb4852370ca34dcc64c348bae2d00 to your computer and use it in GitHub Desktop.
FCC: D3.js
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
<style> | |
.bar { | |
width: 25px; | |
height: 100px; | |
/* Add your code below this line */ | |
/* Add your code above this line */ | |
display: inline-block; | |
background-color: blue; | |
} | |
</style> | |
<body> | |
<script> | |
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9]; | |
d3.select("body").selectAll("div") | |
.data(dataset) | |
.enter() | |
.append("div") | |
.attr("class", "bar") | |
.style("height", (d) => (d + "px")) // Change this line | |
</script> | |
</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
<style> | |
.bar:hover { | |
fill: brown; | |
} | |
</style> | |
<body> | |
<script> | |
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9]; | |
const w = 500; | |
const h = 100; | |
const svg = d3.select("body") | |
.append("svg") | |
.attr("width", w) | |
.attr("height", h); | |
svg.selectAll("rect") | |
.data(dataset) | |
.enter() | |
.append("rect") | |
.attr("x", (d, i) => i * 30) | |
.attr("y", (d, i) => h - 3 * d) | |
.attr("width", 25) | |
.attr("height", (d, i) => d * 3) | |
.attr("fill", "navy") | |
.attr("class", "bar") | |
// Add your code below this line | |
.append("title") | |
.text(d => d) | |
// Add your code above this line | |
svg.selectAll("text") | |
.data(dataset) | |
.enter() | |
.append("text") | |
.text((d) => d) | |
.attr("x", (d, i) => i * 30) | |
.attr("y", (d, i) => h - (d * 3 + 3)) | |
</script> | |
</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
<body> | |
<script> | |
const dataset = [ | |
[ 34, 78 ], | |
[ 109, 280 ], | |
[ 310, 120 ], | |
[ 79, 411 ], | |
[ 420, 220 ], | |
[ 233, 145 ], | |
[ 333, 96 ], | |
[ 222, 333 ], | |
[ 78, 320 ], | |
[ 21, 123 ] | |
]; | |
const w = 500; | |
const h = 500; | |
const padding = 60; | |
const xScale = d3.scaleLinear() | |
.domain([0, d3.max(dataset, (d) => d[0])]) | |
.range([padding, w - padding]); | |
const yScale = d3.scaleLinear() | |
.domain([0, d3.max(dataset, (d) => d[1])]) | |
.range([h - padding, padding]); | |
const svg = d3.select("body") | |
.append("svg") | |
.attr("width", w) | |
.attr("height", h); | |
svg.selectAll("circle") | |
.data(dataset) | |
.enter() | |
.append("circle") | |
.attr("cx", (d) => xScale(d[0])) | |
.attr("cy",(d) => yScale(d[1])) | |
.attr("r", (d) => 5); | |
svg.selectAll("text") | |
.data(dataset) | |
.enter() | |
.append("text") | |
.text((d) => (d[0] + "," + d[1])) | |
.attr("x", (d) => xScale(d[0] + 10)) | |
.attr("y", (d) => yScale(d[1])) | |
const xAxis = d3.axisBottom(xScale); | |
// Add your code below this line | |
const yAxis = d3.axisLeft(yScale); | |
// Add your code above this line | |
svg.append("g") | |
.attr("transform", "translate(0," + (h - padding) + ")") | |
.call(xAxis); | |
// Add your code below this line | |
svg.append("g") | |
.attr("transform", "translate(" + padding + ",0)") | |
.call(yAxis); | |
// Add your code above this line | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment