From b8b89a6ea1a9ef6f7c098f870c68a1880d8543b2 Mon Sep 17 00:00:00 2001
From: Masayuki Tanaka <masayuki0812@mac.com>
Date: Tue, 29 Apr 2014 16:48:31 +0900
Subject: [PATCH] Remove useless fill style for bar

---
 c3.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/c3.js b/c3.js
index 03a40f6..c9e0a45 100644
--- a/c3.js
+++ b/c3.js
@@ -3672,7 +3672,6 @@
             // Bars for each data
             mainBarEnter.append('g')
                 .attr("class", classBars)
-                .style("fill", function (d) { return color(d); })
                 .style("stroke", "none")
                 .style("cursor", function (d) { return __data_selection_isselectable(d) ? "pointer" : null; });