├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── dc.js ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .mailmap ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── dc.css ├── dc.js ├── dc.min.js ├── dc.min.js.map ├── docs └── coverage.js ├── index.js ├── package.json ├── regression ├── difflib.js ├── inject-serializer.js ├── rendered-stock-fixture.html └── stock-regression-test.js ├── scripts └── pre-commit.sh ├── spec ├── bar-chart-spec.js ├── base-mixin-spec.js ├── box-plot-spec.js ├── bubble-chart-spec.js ├── bubble-overlay-spec.js ├── color-spec.js ├── composite-chart-spec.js ├── coordinate-grid-chart-spec.js ├── core-spec.js ├── data-addition-spec.js ├── data-count-spec.js ├── data-grid-spec.js ├── data-table-spec.js ├── event-spec.js ├── filter-dates-spec.js ├── filters-spec.js ├── geo-choropleth-chart-spec.js ├── heatmap-spec.js ├── helpers │ ├── custom_matchers.js │ ├── fixtures.js │ ├── geoFixtures.js │ ├── jasmine-jsreporter.js │ └── spec-helper.js ├── legend-spec.js ├── line-chart-spec.js ├── logger-spec.js ├── number-display-spec.js ├── pie-chart-spec.js ├── row-chart-spec.js ├── scatter-plot-spec.js ├── series-chart-spec.js └── utils-spec.js ├── src ├── banner.js ├── bar-chart.js ├── base-mixin.js ├── box-plot.js ├── bubble-chart.js ├── bubble-mixin.js ├── bubble-overlay.js ├── cap-mixin.js ├── color-mixin.js ├── composite-chart.js ├── coordinate-grid-mixin.js ├── core.js ├── d3.box.js ├── data-count.js ├── data-grid.js ├── data-table.js ├── errors.js ├── events.js ├── filters.js ├── footer.js ├── geo-choropleth-chart.js ├── heatmap.js ├── legend.js ├── line-chart.js ├── logger.js ├── margin-mixin.js ├── number-display.js ├── pie-chart.js ├── row-chart.js ├── scatter-plot.js ├── series-chart.js ├── stack-mixin.js └── utils.js └── web ├── crime ├── canada_map.svg ├── crime.csv ├── filter_stats.rb └── index.html ├── css ├── bootstrap.css ├── bootstrap.min.css ├── colorbrewer.css └── dc.css ├── docs ├── api-1.5.0.md ├── api-1.6.0.md ├── api-latest.md ├── docco.css ├── index.html ├── public │ ├── fonts │ │ ├── aller-bold.eot │ │ ├── aller-bold.ttf │ │ ├── aller-bold.woff │ │ ├── aller-light.eot │ │ ├── aller-light.ttf │ │ ├── aller-light.woff │ │ ├── novecento-bold.eot │ │ ├── novecento-bold.ttf │ │ └── novecento-bold.woff │ └── stylesheets │ │ └── normalize.css └── stock.html ├── ep ├── blank.gif ├── index.html ├── list.js └── mep.csv ├── examples ├── bar.html ├── box-plot-time.html ├── box-plot.html ├── composite.html ├── cust.html ├── heat.html ├── heatmap-filtering.html ├── index.html ├── line.html ├── monthly-move.csv ├── morley.csv ├── morley2.csv ├── morley3.csv ├── multi-scatter.html ├── number.html ├── ord.html ├── pie.html ├── right-axis.html ├── scatter-brushing.html ├── scatter-series.html ├── scatter.html └── series.html ├── geo ├── us-counties.json └── us-states.json ├── highlighter ├── shAutoloader.js ├── shBrushJScript.js ├── shBrushXml.js ├── shCore.css ├── shCore.js └── shThemeDefault.css ├── img ├── glyphicons-halflings-white.png └── glyphicons-halflings.png ├── index.html ├── js ├── colorbrewer.js ├── crossfilter.js ├── d3.js ├── dc.js ├── dc.js.map ├── dc.min.js ├── dc.min.js.map └── env-data.js ├── ndx.csv ├── play-ground.html ├── stock.js └── vc ├── index.html ├── state2code.rb └── vc.csv /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/README.md -------------------------------------------------------------------------------- /dc.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/.gitignore -------------------------------------------------------------------------------- /dc.js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/.jscsrc -------------------------------------------------------------------------------- /dc.js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/.jshintrc -------------------------------------------------------------------------------- /dc.js/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/.mailmap -------------------------------------------------------------------------------- /dc.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/.travis.yml -------------------------------------------------------------------------------- /dc.js/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/AUTHORS -------------------------------------------------------------------------------- /dc.js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/CONTRIBUTING.md -------------------------------------------------------------------------------- /dc.js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/Gruntfile.js -------------------------------------------------------------------------------- /dc.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/LICENSE -------------------------------------------------------------------------------- /dc.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/README.md -------------------------------------------------------------------------------- /dc.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/bower.json -------------------------------------------------------------------------------- /dc.js/dc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/dc.css -------------------------------------------------------------------------------- /dc.js/dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/dc.js -------------------------------------------------------------------------------- /dc.js/dc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/dc.min.js -------------------------------------------------------------------------------- /dc.js/dc.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/dc.min.js.map -------------------------------------------------------------------------------- /dc.js/docs/coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/docs/coverage.js -------------------------------------------------------------------------------- /dc.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/index.js -------------------------------------------------------------------------------- /dc.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/package.json -------------------------------------------------------------------------------- /dc.js/regression/difflib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/regression/difflib.js -------------------------------------------------------------------------------- /dc.js/regression/inject-serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/regression/inject-serializer.js -------------------------------------------------------------------------------- /dc.js/regression/rendered-stock-fixture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/regression/rendered-stock-fixture.html -------------------------------------------------------------------------------- /dc.js/regression/stock-regression-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/regression/stock-regression-test.js -------------------------------------------------------------------------------- /dc.js/scripts/pre-commit.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | grunt jshint 4 | -------------------------------------------------------------------------------- /dc.js/spec/bar-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/bar-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/base-mixin-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/base-mixin-spec.js -------------------------------------------------------------------------------- /dc.js/spec/box-plot-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/box-plot-spec.js -------------------------------------------------------------------------------- /dc.js/spec/bubble-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/bubble-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/bubble-overlay-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/bubble-overlay-spec.js -------------------------------------------------------------------------------- /dc.js/spec/color-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/color-spec.js -------------------------------------------------------------------------------- /dc.js/spec/composite-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/composite-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/coordinate-grid-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/coordinate-grid-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/core-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/core-spec.js -------------------------------------------------------------------------------- /dc.js/spec/data-addition-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/data-addition-spec.js -------------------------------------------------------------------------------- /dc.js/spec/data-count-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/data-count-spec.js -------------------------------------------------------------------------------- /dc.js/spec/data-grid-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/data-grid-spec.js -------------------------------------------------------------------------------- /dc.js/spec/data-table-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/data-table-spec.js -------------------------------------------------------------------------------- /dc.js/spec/event-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/event-spec.js -------------------------------------------------------------------------------- /dc.js/spec/filter-dates-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/filter-dates-spec.js -------------------------------------------------------------------------------- /dc.js/spec/filters-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/filters-spec.js -------------------------------------------------------------------------------- /dc.js/spec/geo-choropleth-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/geo-choropleth-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/heatmap-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/heatmap-spec.js -------------------------------------------------------------------------------- /dc.js/spec/helpers/custom_matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/helpers/custom_matchers.js -------------------------------------------------------------------------------- /dc.js/spec/helpers/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/helpers/fixtures.js -------------------------------------------------------------------------------- /dc.js/spec/helpers/geoFixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/helpers/geoFixtures.js -------------------------------------------------------------------------------- /dc.js/spec/helpers/jasmine-jsreporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/helpers/jasmine-jsreporter.js -------------------------------------------------------------------------------- /dc.js/spec/helpers/spec-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/helpers/spec-helper.js -------------------------------------------------------------------------------- /dc.js/spec/legend-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/legend-spec.js -------------------------------------------------------------------------------- /dc.js/spec/line-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/line-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/logger-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/logger-spec.js -------------------------------------------------------------------------------- /dc.js/spec/number-display-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/number-display-spec.js -------------------------------------------------------------------------------- /dc.js/spec/pie-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/pie-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/row-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/row-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/scatter-plot-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/scatter-plot-spec.js -------------------------------------------------------------------------------- /dc.js/spec/series-chart-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/series-chart-spec.js -------------------------------------------------------------------------------- /dc.js/spec/utils-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/spec/utils-spec.js -------------------------------------------------------------------------------- /dc.js/src/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/banner.js -------------------------------------------------------------------------------- /dc.js/src/bar-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/bar-chart.js -------------------------------------------------------------------------------- /dc.js/src/base-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/base-mixin.js -------------------------------------------------------------------------------- /dc.js/src/box-plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/box-plot.js -------------------------------------------------------------------------------- /dc.js/src/bubble-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/bubble-chart.js -------------------------------------------------------------------------------- /dc.js/src/bubble-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/bubble-mixin.js -------------------------------------------------------------------------------- /dc.js/src/bubble-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/bubble-overlay.js -------------------------------------------------------------------------------- /dc.js/src/cap-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/cap-mixin.js -------------------------------------------------------------------------------- /dc.js/src/color-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/color-mixin.js -------------------------------------------------------------------------------- /dc.js/src/composite-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/composite-chart.js -------------------------------------------------------------------------------- /dc.js/src/coordinate-grid-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/coordinate-grid-mixin.js -------------------------------------------------------------------------------- /dc.js/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/core.js -------------------------------------------------------------------------------- /dc.js/src/d3.box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/d3.box.js -------------------------------------------------------------------------------- /dc.js/src/data-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/data-count.js -------------------------------------------------------------------------------- /dc.js/src/data-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/data-grid.js -------------------------------------------------------------------------------- /dc.js/src/data-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/data-table.js -------------------------------------------------------------------------------- /dc.js/src/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/errors.js -------------------------------------------------------------------------------- /dc.js/src/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/events.js -------------------------------------------------------------------------------- /dc.js/src/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/filters.js -------------------------------------------------------------------------------- /dc.js/src/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/footer.js -------------------------------------------------------------------------------- /dc.js/src/geo-choropleth-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/geo-choropleth-chart.js -------------------------------------------------------------------------------- /dc.js/src/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/heatmap.js -------------------------------------------------------------------------------- /dc.js/src/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/legend.js -------------------------------------------------------------------------------- /dc.js/src/line-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/line-chart.js -------------------------------------------------------------------------------- /dc.js/src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/logger.js -------------------------------------------------------------------------------- /dc.js/src/margin-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/margin-mixin.js -------------------------------------------------------------------------------- /dc.js/src/number-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/number-display.js -------------------------------------------------------------------------------- /dc.js/src/pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/pie-chart.js -------------------------------------------------------------------------------- /dc.js/src/row-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/row-chart.js -------------------------------------------------------------------------------- /dc.js/src/scatter-plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/scatter-plot.js -------------------------------------------------------------------------------- /dc.js/src/series-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/series-chart.js -------------------------------------------------------------------------------- /dc.js/src/stack-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/stack-mixin.js -------------------------------------------------------------------------------- /dc.js/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/src/utils.js -------------------------------------------------------------------------------- /dc.js/web/crime/canada_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/crime/canada_map.svg -------------------------------------------------------------------------------- /dc.js/web/crime/crime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/crime/crime.csv -------------------------------------------------------------------------------- /dc.js/web/crime/filter_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/crime/filter_stats.rb -------------------------------------------------------------------------------- /dc.js/web/crime/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/crime/index.html -------------------------------------------------------------------------------- /dc.js/web/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/css/bootstrap.css -------------------------------------------------------------------------------- /dc.js/web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /dc.js/web/css/colorbrewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/css/colorbrewer.css -------------------------------------------------------------------------------- /dc.js/web/css/dc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/css/dc.css -------------------------------------------------------------------------------- /dc.js/web/docs/api-1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/api-1.5.0.md -------------------------------------------------------------------------------- /dc.js/web/docs/api-1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/api-1.6.0.md -------------------------------------------------------------------------------- /dc.js/web/docs/api-latest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/api-latest.md -------------------------------------------------------------------------------- /dc.js/web/docs/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/docco.css -------------------------------------------------------------------------------- /dc.js/web/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/index.html -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/aller-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/aller-bold.eot -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/aller-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/aller-bold.ttf -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/aller-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/aller-bold.woff -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/aller-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/aller-light.eot -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/aller-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/aller-light.ttf -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/aller-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/aller-light.woff -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/novecento-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/novecento-bold.eot -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/novecento-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/novecento-bold.ttf -------------------------------------------------------------------------------- /dc.js/web/docs/public/fonts/novecento-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/fonts/novecento-bold.woff -------------------------------------------------------------------------------- /dc.js/web/docs/public/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/public/stylesheets/normalize.css -------------------------------------------------------------------------------- /dc.js/web/docs/stock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/docs/stock.html -------------------------------------------------------------------------------- /dc.js/web/ep/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/ep/blank.gif -------------------------------------------------------------------------------- /dc.js/web/ep/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/ep/index.html -------------------------------------------------------------------------------- /dc.js/web/ep/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/ep/list.js -------------------------------------------------------------------------------- /dc.js/web/ep/mep.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/ep/mep.csv -------------------------------------------------------------------------------- /dc.js/web/examples/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/bar.html -------------------------------------------------------------------------------- /dc.js/web/examples/box-plot-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/box-plot-time.html -------------------------------------------------------------------------------- /dc.js/web/examples/box-plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/box-plot.html -------------------------------------------------------------------------------- /dc.js/web/examples/composite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/composite.html -------------------------------------------------------------------------------- /dc.js/web/examples/cust.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/cust.html -------------------------------------------------------------------------------- /dc.js/web/examples/heat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/heat.html -------------------------------------------------------------------------------- /dc.js/web/examples/heatmap-filtering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/heatmap-filtering.html -------------------------------------------------------------------------------- /dc.js/web/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/index.html -------------------------------------------------------------------------------- /dc.js/web/examples/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/line.html -------------------------------------------------------------------------------- /dc.js/web/examples/monthly-move.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/monthly-move.csv -------------------------------------------------------------------------------- /dc.js/web/examples/morley.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/morley.csv -------------------------------------------------------------------------------- /dc.js/web/examples/morley2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/morley2.csv -------------------------------------------------------------------------------- /dc.js/web/examples/morley3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/morley3.csv -------------------------------------------------------------------------------- /dc.js/web/examples/multi-scatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/multi-scatter.html -------------------------------------------------------------------------------- /dc.js/web/examples/number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/number.html -------------------------------------------------------------------------------- /dc.js/web/examples/ord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/ord.html -------------------------------------------------------------------------------- /dc.js/web/examples/pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/pie.html -------------------------------------------------------------------------------- /dc.js/web/examples/right-axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/right-axis.html -------------------------------------------------------------------------------- /dc.js/web/examples/scatter-brushing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/scatter-brushing.html -------------------------------------------------------------------------------- /dc.js/web/examples/scatter-series.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/scatter-series.html -------------------------------------------------------------------------------- /dc.js/web/examples/scatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/scatter.html -------------------------------------------------------------------------------- /dc.js/web/examples/series.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/examples/series.html -------------------------------------------------------------------------------- /dc.js/web/geo/us-counties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/geo/us-counties.json -------------------------------------------------------------------------------- /dc.js/web/geo/us-states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/geo/us-states.json -------------------------------------------------------------------------------- /dc.js/web/highlighter/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/highlighter/shAutoloader.js -------------------------------------------------------------------------------- /dc.js/web/highlighter/shBrushJScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/highlighter/shBrushJScript.js -------------------------------------------------------------------------------- /dc.js/web/highlighter/shBrushXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/highlighter/shBrushXml.js -------------------------------------------------------------------------------- /dc.js/web/highlighter/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/highlighter/shCore.css -------------------------------------------------------------------------------- /dc.js/web/highlighter/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/highlighter/shCore.js -------------------------------------------------------------------------------- /dc.js/web/highlighter/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/highlighter/shThemeDefault.css -------------------------------------------------------------------------------- /dc.js/web/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /dc.js/web/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /dc.js/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/index.html -------------------------------------------------------------------------------- /dc.js/web/js/colorbrewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/colorbrewer.js -------------------------------------------------------------------------------- /dc.js/web/js/crossfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/crossfilter.js -------------------------------------------------------------------------------- /dc.js/web/js/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/d3.js -------------------------------------------------------------------------------- /dc.js/web/js/dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/dc.js -------------------------------------------------------------------------------- /dc.js/web/js/dc.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/dc.js.map -------------------------------------------------------------------------------- /dc.js/web/js/dc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/dc.min.js -------------------------------------------------------------------------------- /dc.js/web/js/dc.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/dc.min.js.map -------------------------------------------------------------------------------- /dc.js/web/js/env-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/js/env-data.js -------------------------------------------------------------------------------- /dc.js/web/ndx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/ndx.csv -------------------------------------------------------------------------------- /dc.js/web/play-ground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/play-ground.html -------------------------------------------------------------------------------- /dc.js/web/stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/stock.js -------------------------------------------------------------------------------- /dc.js/web/vc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/vc/index.html -------------------------------------------------------------------------------- /dc.js/web/vc/state2code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/vc/state2code.rb -------------------------------------------------------------------------------- /dc.js/web/vc/vc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchartoff/chart-tools/HEAD/dc.js/web/vc/vc.csv --------------------------------------------------------------------------------