Draw simple timeline with D3 Draw simple timeline with D3 javascript javascript

Draw simple timeline with D3


I recently had to do something similar. I ended up writing a d3 plugin that could handle this case among a few others. https://github.com/jiahuang/d3-timeline

enter image description here

enter image description here

enter image description here

enter image description here

I'm pretty new to D3 as well, but I hope it's useful.


You should be able to accomplish this with a time scale and an axis

Scott Murray has a really good set of tutorials that culminates in one for axes

Just think of your time line as a 1-dimensional scatterplot with a time scale.


I am going to develop similar visualization and found on Github timeknots component based on d3.js.