Commit d86087e0 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Merge branch 'lemonzi-patch-1'

parents e127fb0c 4206f9d6
...@@ -1403,7 +1403,7 @@ ...@@ -1403,7 +1403,7 @@
return xValues; return xValues;
} }
function getXValue(id, i) { function getXValue(id, i) {
return id in c3.data.xs && c3.data.xs[id] && c3.data.xs[id][i] ? c3.data.xs[id][i] : i; return id in c3.data.xs && c3.data.xs[id] && (c3.data.xs[id][i] || c3.data.xs[id][i] === 0) ? c3.data.xs[id][i] : i;
} }
function getOtherTargetXs() { function getOtherTargetXs() {
var idsForX = Object.keys(c3.data.xs); var idsForX = Object.keys(c3.data.xs);
......
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