Commit 10ec3470 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix y domain update when flow

parent 198d16f7
...@@ -486,7 +486,7 @@ ...@@ -486,7 +486,7 @@
$$.subXAxis.tickValues([]); $$.subXAxis.tickValues([]);
} }
if (withY) { if (withY && !options.flow) {
xDomainForZoom = $$.x.orgDomain(); xDomainForZoom = $$.x.orgDomain();
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -481,7 +481,7 @@ c3_chart_internal_fn.redraw = function (options, transitions) { ...@@ -481,7 +481,7 @@ c3_chart_internal_fn.redraw = function (options, transitions) {
$$.subXAxis.tickValues([]); $$.subXAxis.tickValues([]);
} }
if (withY) { if (withY && !options.flow) {
xDomainForZoom = $$.x.orgDomain(); xDomainForZoom = $$.x.orgDomain();
} }
......
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