Published
Edited
Sep 29, 2020
Insert cell
md`# Day 31 (9-2-10), 2020-09-24`
Insert cell
md`
9-2-10. Create a \`p\` element with the text "Click here to remove data". Every time you click it, the first bar and its associated label will be removed. Add a transition (half a second) to the removal so that the **exiting** bar will move to the bottom-right corner of the SVG and then disappear. Make sure to update the bars and labels.
`
Insert cell
md`
*Hint* :
- To remove the first data value from dataset, use \`.shift()\`;
- To remove svg elements (rect and text), use \`.exit().remove()\`. The \`.exit()\` function returns a reference to the exiting element; Transition syntaxes should be added between \`.exit()\` and \`.remove()\`.
- To make sure that the exiting bar moves to the bottom-right corner before disappearing, set its position after the transition and before the removal;
- After the removal, we need to update the bars and labels. That's fairly easy. For \`rect\`, just use \`svg.selectAll("rect")\`, and then set its position, width, height and color using \`attr("x", ...)...\`. For \`text\`, first use \`svg.selectAll("text").text(d => d)\`, and then set texts' positions.
`
Insert cell
md`
Something I don't understand but don't have time to figure out:

- I want to let the eixiting label to turn red and move to the upper-right corner before disappearing, so I specified \`.attr("x", w).attr("y", 0).\` after the transition syntaxes and before \`.remove()\`. However, I noticed that it just cannot move horizontally. It keeps within its original horizontal position.

- I just don't know why and how [Scott Murray's codes](https://github.com/scotthmurray/d3-book/blob/master/chapter_09/26_removing_values.html) worked. Why should we use \`bars.enter()...\` here?

- How to get the transition in [Scott Murray's codes](https://github.com/scotthmurray/d3-book/blob/master/chapter_09/26_removing_values.html) when updating the bars?

- I used \`dataset.pop()\`, which is supposed to delete the last data value. Yes, when I used

\`svg.selectAll("rect")
.data(dataset)
.exit()
.transition()
.attr("x", w)
.attr("y", h)
.remove()
\`

The exiting bar traveled from the left! Why???
`
Insert cell
md`
## Clearly, there are just so many points that I didn't get in terms of removing data values. Unfortunately, I don't have to time to understand them now. I have to move on.
`
Insert cell
md`
Go to [Day 32](https://observablehq.com/@hongtaoh/day-32-2020-09-25).
`
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more