I have two series, maximum and average, which each contain a value for all days in a month. In our desktop software we used to display these in a bar chart where the average series is overlayed on the maximum series. Since the average can never be greater than the maximum, there is no problem with hidden bars.
In NVD3 I only found options to either group or stack the bars. Grouping takes too much room. Stacking on the other side would display wrong values for the upper bars. Only if both bars start at the bottom axis, their actual values can be read from the y axis.
Can this be accomplished in NVD3 in any way?
If not directly in NVD3, could it be accomplished by accessing the Underlying d3 objects?