D3 bar chart (data-date attribute)

Hi, I can t pass the 10th test :

The data-date attribute and its corresponding bar element should align with the corresponding value on the x-axis.

I have no idea how to fix it.
My code Bar-chart

I also have problem with tooltip test, the tooltip is working but it wont pass the test.
TIA.

If you compare the bars to your x-axis, you’ll notice that two bars for a year are to the left of a tick and two are to the right. Also, you are using a linear x-axis scale rather than a time scale for time data. Without looking at the tests and doing some hacking on your code, my guess is that you’ll need to move the bars so that the first bar for a given year starts on the tick and the others follow to the right. You may also need to use a time scale for the x-axis to make the project’s tests work correctly.

The tooltip issue is similar to many others posted in the forums.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.