https://i.sstatic.net/P6qck.png
I am interested in creating a split difference bar chart using d3 similar to the image provided. I have two input arrays - one for y-axis labels and one for data as shown below:
data = [[35,90], [60,45], [80,90], [95,90]]
months = ["Jan - 20", "Feb - 20", "Mar - 20", "Apr -20"]
I attempted to use d3-observable, but I have encountered difficulties with rendering the nested data correctly with scale. Any advice or assistance on this matter would be greatly appreciated.
Thank you.