Commit c9ce0d5b authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix custom xs when 0 - #154

parent ed8f8888
......@@ -1424,7 +1424,7 @@
x = rawX ? rawX instanceof Date ? rawX : parseDate(rawX) : parseDate(getXValue(id, index));
}
else if (isCustomX && !isCategorized) {
x = rawX ? +rawX : getXValue(id, index);
x = isValue(rawX) ? +rawX : getXValue(id, index);
}
else {
x = index;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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