Skip to content

Commit

Permalink
Merge pull request #78 from jamesleesaunders/barChartCircular
Browse files Browse the repository at this point in the history
Circular Bar Chart
  • Loading branch information
jamesleesaunders authored Feb 3, 2018
2 parents 89792bc + 21bfb8e commit 2e6f5db
Show file tree
Hide file tree
Showing 20 changed files with 1,088 additions and 131 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ JS_FILES := src/header.js \
src/colors.js \
src/component/barsVertical.js \
src/component/barsStacked.js \
src/component/barsCircular.js \
src/component/polarArea.js \
src/component/donut.js \
src/component/scatterPlot.js \
Expand All @@ -24,6 +25,7 @@ JS_FILES := src/header.js \
src/component/htmlTable.js \
src/component/htmlList.js \
src/chart/barChartClustered.js \
src/chart/barChartCircular.js \
src/chart/barChartStacked.js \
src/chart/barChartVertical.js \
src/chart/donutChart.js \
Expand Down
14 changes: 14 additions & 0 deletions build/d3-ez.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,20 @@ table.htmlTable {
cursor: pointer;
}

/* === Bar Chart (Circular) Styles === */

.barChartCircular path.bar {
stroke: #999999;
stroke-width: 0.5px;
}

.barChartCircular path.bar:hover {
opacity: 0.7;
stroke: black;
cursor: pointer;
}


/* === Candlestick Chart Styles === */

.candlestickChart .series .bar {
Expand Down
Loading

0 comments on commit 2e6f5db

Please sign in to comment.