Commit 6f75812a authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix bar style

parent 3ddaa7b5
...@@ -84,6 +84,9 @@ ...@@ -84,6 +84,9 @@
/*-- Bar --*/ /*-- Bar --*/
.c3-bar {
stroke-width: 0;
}
.c3-bar._expanded_ { .c3-bar._expanded_ {
fill-opacity: 0.75; fill-opacity: 0.75;
} }
......
...@@ -3580,8 +3580,6 @@ ...@@ -3580,8 +3580,6 @@
mainBar.enter().append('path') mainBar.enter().append('path')
.attr("class", classBar) .attr("class", classBar)
.style("stroke", function (d) { return color(d.id); }) .style("stroke", function (d) { return color(d.id); })
.style("stroke-width", 2)
.style("opacity", 0)
.style("fill", function (d) { return color(d.id); }) .style("fill", function (d) { return color(d.id); })
.style("fill-opacity", function () { if (__color_opacity) { return __color_opacity; } return initialOpacity; }); .style("fill-opacity", function () { if (__color_opacity) { return __color_opacity; } return initialOpacity; });
mainBar mainBar
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment