Browse Source

Fix y domain update when flow

pull/713/merge
Masayuki Tanaka 10 years ago
parent
commit
10ec3470a0
  1. 2
      c3.js
  2. 2
      c3.min.js
  3. 2
      src/core.js

2
c3.js

@ -486,7 +486,7 @@
$$.subXAxis.tickValues([]);
}
if (withY) {
if (withY && !options.flow) {
xDomainForZoom = $$.x.orgDomain();
}

2
c3.min.js vendored

File diff suppressed because one or more lines are too long

2
src/core.js

@ -481,7 +481,7 @@ c3_chart_internal_fn.redraw = function (options, transitions) {
$$.subXAxis.tickValues([]);
}
if (withY) {
if (withY && !options.flow) {
xDomainForZoom = $$.x.orgDomain();
}

Loading…
Cancel
Save