I have two unsigned integers in the string: X and Y.
X is always less than Y because it is a subset of it.
I want to combine these two values in one line. However, the Stacking Bar Chart adds values instead of “overlapping” them.
This is what isStacked: trueleads to:
XXXYYYYY
(3x + 5y, axis reaches 8)
And here is my goal:
XXXYY
(3x within 5y, axis reaches 5)
How can I “merge” values into one bar, which is based only on Y, and thus does not affect the maximum value of the axis?
source
share