Skip to content

Commit

Permalink
Fix bug where horizontal lines would disappear
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwalley committed Sep 19, 2016
1 parent 245840d commit cc814e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "d3-bumps-chart",
"version": "0.0.6",
"version": "0.0.7",
"description": "Draw bumps charts.",
"keywords": [
"d3",
Expand Down
3 changes: 2 additions & 1 deletion src/bumpsChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ export default function() {
const defs = svg.append('defs');

const dropShadowFilter = defs.append('filter')
.attr('id', 'dropShadow');
.attr('id', 'dropShadow')
.attr('filterUnits', 'userSpaceOnUse');

dropShadowFilter.append('feGaussianBlur')
.attr('stdDeviation', 0)
Expand Down

0 comments on commit cc814e2

Please sign in to comment.