Skip to content

Commit

Permalink
Close issue #400. Removes shadow when highlighting pie chart
Browse files Browse the repository at this point in the history
  • Loading branch information
stormpython committed Sep 26, 2014
1 parent b21b916 commit d37ef6a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/kibana/components/vislib/visualizations/pie_chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ define(function (require) {
})
.style('stroke', '#fff')
.style('fill', function (d) {
if (d.depth === 0) { return 'none'; }
return color(d.name);
})
.attr('fill-rule', 'evenodd');
Expand Down

0 comments on commit d37ef6a

Please sign in to comment.