Https://www.freecodecamp.org/forum/t/d3-practical-invert-svg-elements/342825

Tell us what’s happening:

Your code so far


<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) => {
       // Add your code below this line
return (d - 1) * 3


       // Add your code above this line
     })
     .attr("width", 25)
     .attr("height", (d, i) => 3 * d);
</script>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.2; rv:72.0) Gecko/20100101 Firefox/72.0.

Challenge: Invert SVG Elements

Link to the challenge:
https://www.freecodecamp.org/learn/data-visualization/data-visualization-with-d3/invert-svg-elements

Hello Tsar.

What is your question?

First of all thanks for reviewing my work. Well, it sounds stupid but that’s exactly what happened. I just jumped into solving the problem without first understanding the requirements. When I went back and read the second time, I ridiculed myself for not paying particular attention. Thanks so much.