From 150dd26ff31132140a0decf86d3c04d0e271d4be Mon Sep 17 00:00:00 2001 From: Masayuki Tanaka Date: Fri, 2 May 2014 14:17:48 +0900 Subject: [PATCH] Fix trivial --- c3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c3.js b/c3.js index cb28135..a325256 100644 --- a/c3.js +++ b/c3.js @@ -3783,7 +3783,7 @@ .style("pointer-events", "none"); mainTextEnter.append('g') .attr('class', classTexts) - .style("fill", function (d) { return color(d); }); + .style("fill", color); //-- Bar --// mainBarUpdate = main.select('.' + CLASS.chartBars).selectAll('.' + CLASS.chartBar)