Commit 18feffab authored by Masayuki Tanaka's avatar Masayuki Tanaka

Merge pull request #264 from bjlbernal/patch-1

Update c3.js, getInterporate being used to fill interpolate value. ...porate vs ...polate
parents 5988709d 1fa6f238
...@@ -2256,7 +2256,7 @@ ...@@ -2256,7 +2256,7 @@
return rect; return rect;
} }
function getInterporate(d) { function getInterpolate(d) {
return isSplineType(d) ? "cardinal" : isStepType(d) ? "step-after" : "linear"; return isSplineType(d) ? "cardinal" : isStepType(d) ? "step-after" : "linear";
} }
...@@ -2365,7 +2365,7 @@ ...@@ -2365,7 +2365,7 @@
var data = filterRemoveNull(d.values), x0, y0; var data = filterRemoveNull(d.values), x0, y0;
if (isAreaType(d)) { if (isAreaType(d)) {
return area.interpolate(getInterporate(d))(data); return area.interpolate(getInterpolate(d))(data);
} else { } else {
x0 = x(data[0].x); x0 = x(data[0].x);
y0 = getYScale(d.id)(data[0].value); y0 = getYScale(d.id)(data[0].value);
...@@ -2392,7 +2392,7 @@ ...@@ -2392,7 +2392,7 @@
if (__data_regions[d.id]) { if (__data_regions[d.id]) {
return lineWithRegions(data, x, y, __data_regions[d.id]); return lineWithRegions(data, x, y, __data_regions[d.id]);
} else { } else {
return line.interpolate(getInterporate(d))(data); return line.interpolate(getInterpolate(d))(data);
} }
} else { } else {
if (data[0]) { if (data[0]) {
......
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