Skip to content

connie-ru-wang/dcjs-worked-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

A worked example with dc.js

Rebuilding the dc.js Nasdaq example step-by-step

The Nasdaq dashboard can be seen here:

The annotated code is here:

In this repo, I'm going to add things step by step so that I understand what's going on in greater detail. Most code will go in dashboard.html.

To run the example and see all the graphs, set up a local server with either:

  • python -m SimpleHTTPServer
  • python3 -m http.server
  • Any server of your choice

Then in your browser go to localhost:8000/dashboard.html (replace the port or URL as required by your server set-up).

Steps

Set-up

  1. create an HTML skeleton and pull in the required libraries from a CDN.
  2. download data, load the CSV with d3, coerce strings to the right formats, then load it into CrossFilter

DataTable

  1. Create a simple datatable that displays all the data in rows
  2. Add in bootstrap and make the table look nice
  3. Add in pagination for the table

Piecharts

  1. Create very basic pie chart and add a little bit of Bootstrap. Note that filtering on the pie chart already filters the table! (Although the row counts don't change - something to fix.)
  2. Add some optional features to the pie chart like a custom label
  3. Add a reset button

About

Rebuilding the dc.js Nasdaq example step-by-step

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 100.0%