Skip to content

Commit

Permalink
Add BoxPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
jrideout committed Oct 9, 2013
1 parent e8c93ca commit 22dd82e
Show file tree
Hide file tree
Showing 10 changed files with 1,237 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,5 +146,7 @@ module.exports.jsFiles = [
"src/scatter-plot.js",
"src/number-display.js",
"src/heatmap.js",
"src/d3.box.js",
"src/box-plot.js",
"src/footer.js"
];
21 changes: 21 additions & 0 deletions dc.css
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,24 @@ div.dc-chart {
.dc-hard .number-display {
float: none;
}

.dc-chart .box {
font: 10px sans-serif;
}

.dc-chart .box line,
.dc-chart .box rect,
.dc-chart .box circle {
fill: #fff;
stroke: #000;
stroke-width: 1.5px;
}

.dc-chart .box .center {
stroke-dasharray: 3,3;
}

.dc-chart .box .outlier {
fill: none;
stroke: #ccc;
}
Loading

0 comments on commit 22dd82e

Please sign in to comment.