--- title: dc.js --- dc.js is a javascript library for creating data visualization on browser. To create specific charts the corresponding methods are called. It internally uses croassfilter.js and d3.js and its own style sheet. #### Set-up The dc.js library is set up in a html file. Before including dc.js in html, d3.js, crossfilter.js have to be included in it. Then dc.js javascript code and its styles need to be included as shown below, ```html dc.js setup ``` #### More information * Github page * Example Charts using dc.js