I want to display one bar chart on top of another one.
Reason:
I am showing a base consumption on a certain day, but also the overall value.
I don't want a bar chart next to another but on top of one.
So far, I draw a line with pure d3.js on top of the bar, which brings a lot complexity and handling edge cases on my own.
The problem: I am using a multibarchart with nvd3.js, because I sometimes display more than one range of value in my chart. So for one or more series inside this chart, I want to display another bar chart on top.
Is there a better solution for this?