diff --git a/guide/english/dc/index.md b/guide/english/dc/index.md new file mode 100644 index 0000000000..b96b8856d1 --- /dev/null +++ b/guide/english/dc/index.md @@ -0,0 +1,30 @@ +--- +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