md` ## Task 9-2
- 9-2-5. Within \`.on("start", ...)\`, you need to use \`d3.select(this)\`, rather than \`svg.select(this)\`.
- 9-2-7. You can add many transitions you want. However, you cannot add a transition within in \`.on("start", ...)\`, which is designed for immediate transformations, not interpolated ones.
For example,
\`svg.selectAll("circle")
.data(dataset)
.transtion()
.duration(1000)
.transition()
.duration(1000)
.
.
.
\` is okay.
- 9-2-9.
- \`bars.enter().append("rect")...\` will return references to newly created element. Therefore, all the codes that follow will be used for this newly created bar, until you use \`merge()\`.
`