I have a stacked bar chart with an unstacked line chart combo chart using Chart.js. I need the stacked bars and unstacked lines to appear on the same axis. It doesn't appear that I can do this, so I put them on different axes so that one could be stacked and the other not (e.g., overlay a capacity line over production of different parts). However, if they must be on different axes, then I need them to have the same scale. I could not find a way to force the axes to have the same scale automatically, so I am forced to try to compute my own scale and set them each to that. This isn't ideal and I would prefer if I could just use a setting to force them to use the same scale. Is this possible?
Here is a post that is basically the same question as I am: Chart.js place both series on same scale The only difference is that I need to stack my bar series which prevents me from using the same axes.