Goals:
- Practice on creation charts with
d3
layouts - Practice on creation an interactivity
The data contains information about Netflix serials from 1940 to 2017 years. We'll work with the following fields:
- title
- rating (local age rating identifier)
- user rating score
- release year
Make two charts in existing svg
containers:
- Bubble chart, on which
release year
mapped tox
position,user rating score
mapped to the size of the circle andrating
mapped to a color of the circle. - Donut chart on sorted array of total serials of every
rating
.
- Add highlighting a circle on bubble chart on
mouseover
with astroke
. - Add highlighting an arc on donut chart on
mouseover
with a loweropacity
. - Add highlighted
rating
identifier to the element at the center of donut chart.
- Change
visibility
, position and content of tooltip based on highlighted circle data. - Highlight the circles on bubble chart with identifier same as the highlighted arc.