Thanks John, but the simplest way to visualise what I'm trying to achieve is
a chart of concentric circles. The radius of the whole circle is the axis,
equivalent to the Y axis. The thickness of each circle is equivalent to the
height of each component that makes up the stacked bar. The dataset I'm using
would only need one bar, which would have 5 datasets. This would be
equivalent to 1 stacked bar with 5 parts to it, each a different colour.
Wadgets = 5
Wedgets = 4
Widgets = 5
Wodgets = 7
Wudgets = 3
This would show, (in an ordinary stacked bar), 1 bar, 24 units high with 5
elements of appropriate height.
The version I want would be 5 concentric circles of total radius 24 units,
each element would be the appropriate thickness (height).
Bubble Chart! Make all the bubbles occupy the same point at their
centres, and make the radii of the bubbles the size you want. Make sure
that the data values are sorted in radius order so that no large bubble
hides a smaller bubble behind it. Make the bubble radii equal to the
*cumulative* size of the values, so that the unhidden part of each
bubble is what shows.
Be careful not to give the wrong impression: the outermost ring will
appear to have more area than the ones further in, even if they have the
same thickness. For instance, the Wadgets, if they are on the outside,
will appear to have 4.5/2.5=180% of the size of the Widgets, even though
they have the same ring thickness, 5. You might be better off selecting
the "proportional bubble area" option instead of "proportional bubble
radius".
But why are you doing this? Is it because you want to create an
"interesting" alternative to a stacked bar chart? That's usually a bad
idea. Interesting is what the data should be, not the presentation.