Browse Source

fix: backport #1891 to v0.4 (#2421)

v0.4
Yoshiya Hinosawa 6 years ago committed by GitHub
parent
commit
5ea824008d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/shape.line.js

2
src/shape.line.js

@ -80,7 +80,7 @@ c3_chart_internal_fn.generateDrawLine = function (lineIndices, isSub) {
if (!config.line_connectNull) { line = line.defined(function (d) { return d.value != null; }); }
return function (d) {
var values = config.line_connectNull ? $$.filterRemoveNull(d.values) : d.values,
x = isSub ? $$.x : $$.subX, y = yScaleGetter.call($$, d.id), x0 = 0, y0 = 0, path;
x = isSub ? $$.subX : $$.x, y = yScaleGetter.call($$, d.id), x0 = 0, y0 = 0, path;
if ($$.isLineType(d)) {
if (config.data_regions[d.id]) {
path = $$.lineWithRegions(values, x, y, config.data_regions[d.id]);

Loading…
Cancel
Save