Fix stacked-100-m update error

parent 333a0293
...@@ -324,6 +324,7 @@ c3_chart_internal_fn.updateCircleY = function () { ...@@ -324,6 +324,7 @@ c3_chart_internal_fn.updateCircleY = function () {
lineIndices = $$.getShapeIndices($$.isLineType), lineIndices = $$.getShapeIndices($$.isLineType),
getPoints = $$.generateGetLinePoints(lineIndices); getPoints = $$.generateGetLinePoints(lineIndices);
$$.circleY = function (d, i) { $$.circleY = function (d, i) {
d = $$.updateValues(d)[i];
return getPoints(d, i)[0][1]; return getPoints(d, i)[0][1];
}; };
} else { } else {
......
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