This simple line chart is constructed from a TSV file storing the closing value of AAPL stock over the last few years. The chart employs conventional margins and a number of D3 features:
- d3.tsv - loading and parsing data
- d3.time.format - parsing dates
- d3.time.scale - x-position encoding
- d3.scale.linear - y-position encoding
- d3.extent - computing domains
- d3.svg.axis - display axes
- d3.svg.line - display line shape