Go Through D3 Documentation
Oct 6, 2022
- D3 is based on HTML, SVG, and CSS.
- The most recent D3 version is v7.
- The goal of D3 is efficient manipulation of documents based on data.
- Similar to jQuery or W3C selection method, D3 also provide selector API, eg
d3.selectAll("p").style("color", "blue")
. - The advanced select manipulation could be done by using enter(), exit(), transition(), functions
6. From the first page of the overview document, D3 covers:
- selection
- dynamic properties
- advanced enter and exit selections
- core concept of transformation
- animation transition
Will continuously discover more D3 content.