Commit 1fa6f238 authored by Brandon Bernal's avatar Brandon Bernal

Update c3.js

Shouldn't getInterporate be getInterpolate to match what it is being used for?
parent dcd707f9
...@@ -2251,7 +2251,7 @@ ...@@ -2251,7 +2251,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";
} }
...@@ -2360,7 +2360,7 @@ ...@@ -2360,7 +2360,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);
...@@ -2387,7 +2387,7 @@ ...@@ -2387,7 +2387,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