md`# Task 10
- 10-1. Make a bar chart for this dataset: [ 5, 10, 13, 19, 21, 25, 22, 18, 15, 13, 11, 12, 15, 20, 18, 17, 16, 18, 23, 25 ]. Set width of the SVG to be 600 and the height 250. Set the inner padding to be 5% of the bandwidth.
- 10-2. Tack on an \`.on()\` function when you create \`rect\` so that when you click each bar, that bar's data value will be shown in the console.
- 10-3. Add \`CSS\` so that when the mouse is hovering the element, the bar turn orange.
- To enable this highlighting effect, make sure that you are using \`.attr("fill", ...)\`, rater than \`.style("fill", ...)\`.
- 10-4. Use \`.on("mouseover", ...)\` to achieve the same effect.
- 10-5. You will see that when the mouse leaves the bar, the color does not restore. Use \`mouseout\` to solve this problem. In addition, add a transition (1/4 second) to color restoration.
`