Commit 1635f41a authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix region, text and grid when updated - #922

parent 76d2df97
......@@ -656,6 +656,9 @@
$$.redrawLine(drawLine);
$$.redrawArea(drawArea);
$$.redrawCircle(cx, cy);
$$.redrawText(xForText, yForText, options.flow);
$$.redrawRegion();
$$.redrawGrid();
if (config.onrendered) {
config.onrendered.call($$);
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -651,6 +651,9 @@ c3_chart_internal_fn.redraw = function (options, transitions) {
$$.redrawLine(drawLine);
$$.redrawArea(drawArea);
$$.redrawCircle(cx, cy);
$$.redrawText(xForText, yForText, options.flow);
$$.redrawRegion();
$$.redrawGrid();
if (config.onrendered) {
config.onrendered.call($$);
}
......
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