This post describes how to build a very basic line chart with d3.js. Only one category is represented, to simplify the code as much as possible. The input dataset is under the .csv
format. You can see many other examples in the line chart section of the gallery. Learn more about the theory of line chart in data-to-viz.com.
div
that will be modified by d3 later on.svg
area. It specify the chart size and its margin. Read more.path
, and using the d3.line
utility.