block by GerHobbelt 2997144

d3.js: positive/negative stacked bar chart with sum line / bar (flex layout)

Full Screen

TODO …… ? 8

Usage

Click the radio buttons for Q1+Q2, Q3, Q4, … to see various stacked bar renderings of the data.

Note that Q3, Q4, … imply that the data has a different meaning than for Q1+Q2: read the text below to understand which questions are asked (Q1, Q2, Q3, etc.) and try to answer those questions while the graph for another Q question is shown: this might be an easy or a hard task. You’ll find out.

Stacked bar charts with positive and negative values: their usefulness

Question: When are stacked bar charts with both negative and positive blocks (components) useful?

Answer: one example is when looking at P&L (profit and loss) numbers on a per-region or per-quarter basis. Here we’ll assume that we want to look at components on a quarterly basis, i.e. our X axis represents time.

Note: for the latter scenario (looking at the numbers per region) X would represent (geo)location, but that doesn’t change anything in this story. And, yes, we’re aware that one can flip the graph: ‘X’ isn’t always equal to ‘horizontal’ that way.

The questions

Say you want to answer these questions quickly:

Forum problem: I want to see the total height of the stacked bar (pos+neg)

I can’t come up with a real-life scenario where one would want that, or rather: where that would be an intuitive way to communicate information. Not just in the financial domain but anywhere.

Given the financial reporting scenario above, there’s very little information, if any at all, in the sum of the absolute P&L numbers. The only place where I expect to encounter such numbers is in spreadsheets, where they are employed as col-vs-row checksums, i.e. as pure technical tools to help assure quality of manual input / internal operation.

What you really want to know is the sum of the actual values, because that answers, at a consolidated level, our Q2: did we gain anything after all?

Thoughts on positive and negative values and a ‘sum of the absolute values’

The scenario I can come up with where you want to recognize positive and negative values and yet want to see a stacked bar starting at zero and only going up, thus having the ‘sum of the absolute values’ immediately visible, is when your positive and negative signs convey another information dimension than the value that comes with it. (I cannot, after some pondering, think of any use where you want the Q1+Q2 pos+neg stacked bars, yet also want the sum of the absolute values depicted in those stacked bars. We’ll continue here with a viable scenario where the ‘sum of absolute values’ is an important datum to see in the graph, though that’s mostly due to the numbers contributing to the sum being naturally positive, rather then there being any need for Math.abs there.)

Say you want to know the total sales, while you also want to see the measure how much each sales’ component contributed in terms of sales (not P&L!) and you want to know whether these components contributed a loss or a profit to the revenue figures each. Technically, you’re treating ‘profit or loss’ as a boolean parameter here (whether you agree or not, you’re looking at a 3D chart anyway, because you’re looking at time vs. sales vs. P&L = 3 dimensions instead of 2 as in the original scanario ( time vs. P&L) and this fact has considerable impact on your visualization anyhow: which dimensions are you going to emphasize when you stick to the requirement that this has to fit in a bar chart, which is a rather 2D-ish visualisation type?

In this scenario, where we need to stick with a (stacked) bar chart for whatever reason, one might think positive and negative stacks are an answer, but you’re hard pressed to produce the sum of the absolute values of profit and loss by simply looking at it. (Take the Q1+Q2 graph, then try to answer the question how much the absolute sum is. You’ll need to go and calculate the sum of the height of the negative stack and the positive stack. Not ‘easy’.)

Of course, you can repurpose the ‘sum line’, but IMHO that’s rather counter-intuitive, as is placing the bars themselves in either the negative or positive stack, because the components’ height now represents sales instead of profit/loss and there’s no such thing as a ‘negative sales’. (Unless your CFO is way too smart for your good; it’s similar to the notorious negative cash and all it’ll get you is all the wrong people perking up and taking an unhealthy interest in your activities. Mme. Zodiac says: “You will experience the pleasure of wearing some very nice cuffs in your near future.“ (If you understand Dutch and are a bit curious: step 3, item 6 in Checklist for (fiscal) due diligence might be a lesson there. I’m sorry I don’t know the English jargon; pull this one through Google Translate for a good laugh, some head scratching and remember that the Dutch ‘kas’ is the English ‘cash box’, but we Dutch like to repurpose so Google calls it ‘cash’ one time and a ‘greenhouse’ another time; each correct when considered completely out of context, but in context this will offer you Close Encounters Of The Bablefish Kind.

Anyway, given that negative values in a sales graph are ludicrous, one might use the negative sign as a boolean signal to tell the world that this component right here contributed a loss (without saying how much of a loss) while positive values would then tell us that we’re looking at a profitable component instead.

Visualizing that +/- boolean would be better done using color or other styling, e.g. boxing the component in a red border box when it’s a loss and no border when it’s the ‘desirable kind’: a sales component which produces a profit.

Hence when we ask Q3 below, we should change the stacked bar chart to a single-sided one.

Further thoughts

One might want to give ‘sales’ and ‘P&L’ dimensions an equal measure of attention; here we ponder what it would bring us when we combine these by ‘floating the zero level for the P&L bars’ - though that’s the bottom-up tech wording of the problem of wanting to see these numbers and coming up with the possible solution of floating the stacks. This is useful when we ask:

This would allow us to see the revenue develop, hence might assist in the prognosis of our annual revenue, and it will show us the quarterly impact of the individual sales components. Hence we might wonder:

Since we are really considering change of focus here, there’s also the diving into the details focus where one wishes to have a closer look at a particular (recurring?) component:

index.html