Data Visualization with D3: Add a Hover Effect to a D3 Element

It's possible to add effects that highlight a bar when the user hovers over it with the mouse. So far, the styling for the rectangles is applied with the built-in D3 and SVG methods, but you can use CSS as well.

<style>
  .bar:hover {
    fill: brown;
  }
</style>
<body>
  <script>
    const dataset = [12312217251829149];

    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", (di) => i * 30)
       .attr("y", (di) => h - 3 * d)
       .attr("width"25)
       .attr("height", (di) => 3 * d)
       .attr("fill""navy")
       // Add your code below this line

.attr('class','bar')

       // Add your code above this line

    svg.selectAll("text")
       .data(dataset)
       .enter()
       .append("text")
       .text((d) => d)
       .attr("x", (di) => i * 30)
       .attr("y", (di) => h - (3 * d) - 3);

  </script>
</body>
Output:




No comments

Powered by Blogger.