Commit e1e4db23 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix grid.x.lines when timeseries

parent daae3d6a
...@@ -520,7 +520,7 @@ ...@@ -520,7 +520,7 @@
return x(d.x); return x(d.x);
} }
function xv (d) { function xv (d) {
return x(d.value); return x(isTimeSeries ? parseDate(d.value) : d.value);
} }
function yv (d) { function yv (d) {
return y(d.value); return y(d.value);
......
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