Commit 86d0bf88 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix legend append animation

parent 01f33238
......@@ -4167,6 +4167,7 @@
.attr('y', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendRect);
l.append('line')
.attr('class', CLASS.legendItemTile)
.style('stroke', $$.color)
.style("pointer-events", "none")
.attr('stroke-width', config.legend_item_tile_height);
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -268,6 +268,7 @@ c3_chart_internal_fn.updateLegend = function (targetIds, options, transitions) {
.attr('y', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendRect);
l.append('line')
.attr('class', CLASS.legendItemTile)
.style('stroke', $$.color)
.style("pointer-events", "none")
.attr('stroke-width', config.legend_item_tile_height);
......
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