I am using d3js v4. The following is what my date string looks like:
var ds = "2019-02-18 22:38:18.327717";
I have set up my parser like so:
var parseDate = d3.timeParse("%Y-%m-%d %H:%M:%S.%L");
I then try and pass this string into parseDate like so:
var parsed_date_value = parseDate(ds);
But parsed_date_value is null after this. I figure there is some issue with the seconds part of my time format but it looks correct and I am not sure. Seems to me this date string matches this format im passing to d3.timeParse()