Is there a token that shows the percentage of each stack in relation to the whole chart? In the Chart below, I am using %pper, but it is giving me the top node over the node total for the chart. %pper works fine for non-stacked bar charts, but I'm looking for something that treats the stack as a single node.
Basically this: %stack-percent = %stack-total / %chart-total, where %chart-total is the sum of all values in the chart.
Here is a span shot of the data in excel. I'm looking for the numbers in orange. However, all I can get are the numbers in blue using %pper or %npv.
Here is my code for the value-box
"value-box":{
"text":"%pper%",
"placement":"top",
"type":"all",
"decimals":0,
"font-size":12,
"font-color":"black",
"font-family":"Consolas",
"rules": [
{
"rule": "%stack-top == 0",
"visible": 0
}
]
}