d3.js is an interesting and powerful library for visualizations. One of the structures what I wanted to create with it was a sunburst type Pie Chart.
I found this nice tutorials tutorial-1, tutorial-2 by David Richard. I plan to learn how to create a sunburst chart from it and add some few modifications of my own.
To get started :
- We need a local dev server to host our files, this can be done easily by installing this lovely npm package http-server
- Then in the terminal run
http-server
to run the server. - I use visual studio code to develop this project, and Debugger For Chrome extension for better js debugging.