md`
- 9-1-2. Create \`xScale\` using \`d3.scaleBand()\`. Let the output range be ([0, w]), and assign 5 percent of the band width to spacing in between bands. Use this \`xScale\` in "x", and "width" accordingly. *Hint* :
1. For \`.domain()\`, use \`d3.range()\`. For example, \`range(10)\` will generate \`[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\`.
2. \`bandwidth()\`.
- 9-1-3. Put the text of corresponding data values right in the middle of the top of each bar. Think hard about how to set the "x" (*Hint* : You'll need to use \`xScale(i)\`, and \`xScale.bandwidht()\`.
- 9-1-4. Let the text "Click here" appear above the bar chart. When visitors click on "Click here", let the text "Hey, don't click that" pop up.
- *Hint* : Add a paragraph element before our javascript. Down at the end of our d3 code, select this new p, and add an *event listener* to the element. You'll use the \`alert()\` function within a \`on\` function.
- What is an *event listener*: an anonymous function that listens for an event on an element or elements.
- \.on\` method takes on two arguments: the event type, and the listener itself which is an anonymous function.
- 9-1-5. Rather than generating the annyoying pop-up text, updating the dataset. That is to say, after people click on the text, the bar chart will represent this updated dataset: [11, 12, 15, 20, 18, 17, 16, 18, 23, 25, 5,10,13,19,21,25,22,18,15,13];
- 9-1-6. Add transition to the bars heights.
- 9-1-7. Let the transition last for 1000 milliseconds. Now, we can see that labels did not have smooth transations along with the bar heights. Add transition and duration to labels as well.
- 9-1-8. Make the rate of motion be linear using the \`ease()\` function.
- 9-1-9. Create a 1000-ms delay before the transition.
- 9-1-10. Make the delay dynamic (so called "staggered delays") such that each subsequent element is dalyed 100 ms more than the preceding element.
`