Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 624 Bytes

welcome.base.md

File metadata and controls

18 lines (14 loc) · 624 Bytes

dc.js

Welcome to the dc.js documentation.

The entire library is scoped under {@link dc the dc namespace}. Its child namespaces contain utilities.

A class diagram is shown below - mixins are blue and chart classes are green. (Relations between mixins are somewhat subjective.)

<script src="http://github.com/js/promise-polyfill.js"></script> <script src="http://github.com/js/fetch.umd.js"></script> <script> window.fetch("http://github.com/img/class-hierarchy.svg").then(function(result) { result.text().then(function(content) { document.getElementById('insert-svg-here').outerHTML = content; }); }); </script>