Skip to content
Advertisement

js d3 chart with timescale

I am a newbie coding js and d3, and I have the code below, I want to display the dates in array on the x axis instead of numbers. I tried many ways to display the dates; most of ways display the dates with no line and data with errors in the HTML console, that it could not read the data type of the dates it only allows numbers.

JavaScript

Thanks for your answers in advance

Advertisement

Answer

I would suggest parsing the strings into Date objects right away and then using d3.scaleTime for the x scale. Here is an example below.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement