Making use of stacking to display the highest value as the longest column/bar, with smaller values being merged within the highest one, can create a more visually appealing stack chart. For example, when looking at Arsenal with values of 14 and 3, ideally the stack chart would show a maximum value of 14 as the largest bar, with the smaller value of 3 stacked within it. This ensures that the y-axis does not exceed the highest bar value no matter what. Similarly, for Liverpool with values of 6, 8, and 1, the desired outcome is to have the y-axis display a maximum value of 8 without summing all the values together. Is there a way to achieve this effect?
[https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/demo/column-stacked]
The y-axis should reflect the maximum number in the series rather than the total of all stacked columns.https://i.stack.imgur.com/xsHz2.png Update:
[https://jsfiddle.net/vkcg9mfo/]
In the provided fiddle, I was able to successfully implement this feature for Manchester. However, the issue arises with Arsenal and other teams as the lower value stacks are hidden. The goal is to ensure all three colors are visible for each stack in the bars. Expected: https://i.stack.imgur.com/zK3dG.png
UPDATED ANSWER: [https://jsfiddle.net/BlackLabel/9n1cqe2x/]