md`
I tried what Scott Murray said on P.202 about "grouping SVG elements". I did find [a solution](https://stackoverflow.com/a/20644664/13716814) to appending a rect and a text element within each g element. However, I still needed to add \`.style("pointer-events", "none")\` within \`text\` elements. Otherwise, when the mouse is right over the text, the color changes, which is so wierd to me. After all, the event listeners are binded to each g, rather than rect nor text, why would the color change when the pointer is over the text (still whithin the g)?
**I don't know**.
Here is the answer to 10-7:
var bars = svg.selectAll("g")
.data(dataset)
.enter()
.append("g")
.attr("transform", (d, i) => "translate("+ xScale(i) +", 0)")
.on("mouseover", function() {
d3.select(this)
.attr("fill", "orange")
})
.on("mouseout", function() {
d3.select(this)
.transition()
.duration(250)
.attr("fill", d => "rgb(0, 0, "+ Math.floor(d * 10) +")")
})
.attr("fill", d => "rgb(0, 0, "+ Math.floor(d * 10) +")")
bar.append("rect")
//.attr("x", (d,i) => xScale(i))
.attr("y", d => h - yScale(d))
.attr("width", xScale.bandwidth())
.attr("height", d => yScale(d))
//.attr("fill", "none")
bar.append("text")
.text(d => d)
.attr("text-anchor", "middle")
.attr("x", xScale.bandwidth() / 2)
.attr("y", d => h - yScale(d) + 14)
.style("font-family", "sans-serif")
.style("font-size", "11px")
.attr("fill", "white")
.style("pointer-events", "none")
`