Search code examples
d3.jsnvd3.js

NVD3.js multiChart x-axis labels is aligned to multiple lines, but not multiple bars


This question relates to NVD3.js multiChart x-axis labels is aligned to lines, but not bars

I am using NVD3.js multiChart to show multiple lines and multiple bars in the chart. All is working fine, but the x-axis labels is aligned only to the line points, not bars. I want to correctly align labels directly below the bars as it should. But I get this:

x-axis labels is not aligned to bars

As you can see - x-axis (example, 2014-Feb) is not aligned to Bars.

1) How to align x-axis labels to bars and lines at the same time?

2) I need this solution for NVD3.js or how to properly integrate.

I made jsFiddle: http://jsfiddle.net/n2hfN/28/

Thanks!


Solution

  • The problem here is that nv.models.multiChart uses a linear scale for its x-axis, and then when it draws the bars it calls nv.models.multiBar, which uses an ordinal scale with .rangeBands().

    You can follow this mess through the source code:

    First lets look at multiChart.js

    HERE is where it sets the x-scale to be a linear scale.

    HERE it calls the nv.models.multiBar model to create the bars.

    If we jump over to have a look at multiBar.js

    HERE it creates an ordinal scale, and HERE it sets the range of the scale using .rangeBands()

    The result is that the ordinal scale used for placing the bars, and the linear scale used for the chart's axis do not align. Here's what the two scales look like on their own if plotted on an axis:

    d3 ordinal vs linear scale

    The solution would be to force the chart to render the line graphs and the x-axis in terms of the ordinal scale used by the bars. This would work in your case because the bars and the lines all use the same data for the x-axis. This is very simple to do if you are making your own chart and not relying on nvd3, as I showed in my answer to your previous question HERE. This is extraordinarily complicated to do if you're trying to work within nvd3, and many others have tried and failed to switch out the default scales used by nvd3 charts. Have a look at this issue on the nvd3 github page that has been open since January, 2013 for example.

    I've tried a number of approaches myself to reuse the bars' ordinal scale, but with little success. If you want to poke around and try to brute-force it yourself, I can tell you that from my experiments I came closest when using chart.bars1.xScale().copy() to make a copy of the bars' scale, and set its domain and rangeBands. Unfortunately, since the chart's width is computed at render time, and I can't seem to create a hook into the chart.update function, it is impossible to set the rangeBands' extent to the correct values.

    In short, if you can't live with the labels being offset, you're probably going to need to code up your own chart without nvd3, or else find a different type of layout for your visualization.